forked from hibernate/hibernate-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HHH-12899 Enable integration tests for MS SQL Server on the AWS build…
… slaves
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Hibernate, Relational Persistence for Idiomatic Java | ||
* | ||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later. | ||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
*/ | ||
|
||
/* | ||
* Hibernate, Relational Persistence for Idiomatic Java | ||
* | ||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later. | ||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
*/ | ||
jdbcDependency 'com.microsoft.sqlserver:mssql-jdbc:6.4.0.jre8' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# Hibernate, Relational Persistence for Idiomatic Java | ||
# | ||
# License: GNU Lesser General Public License (LGPL), version 2.1 or later. | ||
# See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
# | ||
|
||
# | ||
# Hibernate, Relational Persistence for Idiomatic Java | ||
# | ||
# License: GNU Lesser General Public License (LGPL), version 2.1 or later. | ||
# See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
# | ||
|
||
hibernate.dialect org.hibernate.dialect.SQLServer2012Dialect | ||
hibernate.connection.driver_class com.microsoft.sqlserver.jdbc.SQLServerDriver | ||
hibernate.connection.url jdbc:sqlserver://hibernate-testing-mssql-express.ccuzkqo3zqzq.us-east-1.rds.amazonaws.com | ||
hibernate.connection.username hibernate_orm_test | ||
hibernate.connection.password hibernate_orm_test | ||
|
||
hibernate.connection.pool_size 5 | ||
|
||
hibernate.show_sql false | ||
hibernate.format_sql true | ||
|
||
hibernate.max_fetch_depth 5 | ||
|
||
hibernate.cache.region_prefix hibernate.test | ||
hibernate.cache.region.factory_class org.hibernate.testing.cache.CachingRegionFactory | ||
|
||
javax.persistence.validation.mode=NONE | ||
hibernate.service.allow_crawling=false | ||
hibernate.session.events.log=true |