Merge branch 'master' of github.com:hibernate/hibernate-core
Conflicts: build.gradle
This commit is contained in:
commit
0b9888e0e5
|
@ -75,7 +75,7 @@ libraries = [
|
|||
|
||||
subprojects { subProject ->
|
||||
apply plugin: 'idea'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'eclipse'
|
||||
|
||||
defaultTasks 'build'
|
||||
|
||||
|
@ -159,6 +159,9 @@ subprojects { subProject ->
|
|||
module.dependencies*.exported = true
|
||||
}
|
||||
}
|
||||
eclipseClasspath {
|
||||
plusConfigurations.add( configurations.provided )
|
||||
}
|
||||
|
||||
// elements used to customize the generated POM used during upload
|
||||
def pomConfig = {
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.hibernate.dialect.H2Dialect;
|
|||
*/
|
||||
public class TestingDatabaseInfo {
|
||||
public static volatile String DRIVER = "org.h2.Driver";
|
||||
public static volatile String URL = "jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1";
|
||||
public static volatile String URL = "jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE";
|
||||
public static volatile String USER = "sa";
|
||||
public static volatile String PASS = "";
|
||||
|
||||
|
|
Loading…
Reference in New Issue