Skip to content

Commit

Permalink
Missed one more place where MSSQL is used
Browse files Browse the repository at this point in the history
  • Loading branch information
radovanradic committed Sep 19, 2024
1 parent 79ebfbc commit 6771a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
15 changes: 0 additions & 15 deletions data-connection-jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,18 @@ dependencies {

testImplementation mnReactor.micronaut.reactor

testImplementation(mnTestResources.testcontainers.mysql)
testImplementation(mnTestResources.testcontainers.mariadb)
testImplementation(mnTestResources.testcontainers.postgres)
testImplementation(mnTestResources.testcontainers.mssql)
testImplementation(mnTestResources.testcontainers.oracle.xe)

testCompileOnly mn.micronaut.inject.groovy

testImplementation mn.micronaut.http.netty
testRuntimeOnly mnSql.micronaut.jdbc.tomcat
testRuntimeOnly mnSql.h2
testRuntimeOnly mnSql.mariadb.java.client
testRuntimeOnly mnSql.ojdbc11
testRuntimeOnly mnSql.mysql.connector.java
testRuntimeOnly mnSql.postgresql
testRuntimeOnly mnSql.mssql.jdbc
testRuntimeOnly mn.snakeyaml

testResourcesService mnSql.mariadb.java.client
testResourcesService mnSql.ojdbc11
testResourcesService mnSql.mysql.connector.java
testResourcesService mnSql.postgresql
testResourcesService mnSql.mssql.jdbc

testImplementation libs.micronaut.testresources.client

testRuntimeOnly mnSerde.micronaut.serde.oracle.jdbc.json
}

micronaut {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class SqlServerHibernateTransactionSpec extends HibernateTransactionSpec impleme
"datasources.default.name" : "mymssqldb",
'jpa.default.properties.hibernate.hbm2ddl.auto' : 'create-drop',
'jpa.default.properties.hibernate.dialect' : 'org.hibernate.dialect.SQLServerDialect',
'test-resources.containers.mssql.accept-license' : 'true'
'test-resources.containers.mssql.accept-license' : 'true',
'test-resources.containers.mssql.image-name' : 'mcr.microsoft.com/mssql/server:2022-latest'
]
}

Expand Down

0 comments on commit 6771a04

Please sign in to comment.