1 package org.jahia.clipbuilder.sql.config;2 3 public class DbProps {4 public static String DRIVER = "com.mysql.jdbc.Driver";5 public static String URL = "jdbc:mysql://localhost:3306/test";6 public static String USERNAME = "root";7 public static String PASSWORD = "root1234";8 }9