Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -532,10 +532,6 @@
<groupId>io.helidon.data.sql</groupId>
<artifactId>helidon-data-sql-common</artifactId>
</dependency>
<dependency>
<groupId>io.helidon.data.sql</groupId>
<artifactId>helidon-data-sql-testing</artifactId>
</dependency>
<dependency>
<groupId>io.helidon.data.sql.datasource</groupId>
<artifactId>helidon-data-sql-datasource</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -723,11 +723,6 @@
<artifactId>helidon-data-sql-common</artifactId>
<version>${helidon.version}</version>
</dependency>
<dependency>
<groupId>io.helidon.data.sql</groupId>
<artifactId>helidon-data-sql-testing</artifactId>
<version>${helidon.version}</version>
</dependency>
<dependency>
<groupId>io.helidon.data.sql.datasource</groupId>
<artifactId>helidon-data-sql-datasource</artifactId>
Expand Down
1 change: 1 addition & 0 deletions data/sql/testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<properties>
<!-- due to a package split in testcontainers, we cannot use module-info.java -->
<helidon.services.skip>true</helidon.services.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
Expand Down
10 changes: 10 additions & 0 deletions data/tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
<dependency-check.skip>true</dependency-check.skip>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.helidon.data.sql</groupId>
<artifactId>helidon-data-sql-testing</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<modules>
<module>sql</module>
<module>model</module>
Expand Down
10 changes: 10 additions & 0 deletions tests/integration/transaction/data-mp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@
<artifactId>io.helidon.data.tests.integration.transaction.data.mp-project</artifactId>
<name>Helidon Tests Integration Transactions Data with MP Project</name>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.helidon.data.sql</groupId>
<artifactId>helidon-data-sql-testing</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<modules>
<module>data-mp</module>
<module>eclipselink</module>
Expand Down
Loading