Skip to content

Commit 7d73ffc

Browse files
authored
4.x: Do not deploy helidon-data-sql-testing (#10818)
* Do not deploy helidon-data-sql-testing
1 parent a451cdd commit 7d73ffc

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

all/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -532,10 +532,6 @@
532532
<groupId>io.helidon.data.sql</groupId>
533533
<artifactId>helidon-data-sql-common</artifactId>
534534
</dependency>
535-
<dependency>
536-
<groupId>io.helidon.data.sql</groupId>
537-
<artifactId>helidon-data-sql-testing</artifactId>
538-
</dependency>
539535
<dependency>
540536
<groupId>io.helidon.data.sql.datasource</groupId>
541537
<artifactId>helidon-data-sql-datasource</artifactId>

bom/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -723,11 +723,6 @@
723723
<artifactId>helidon-data-sql-common</artifactId>
724724
<version>${helidon.version}</version>
725725
</dependency>
726-
<dependency>
727-
<groupId>io.helidon.data.sql</groupId>
728-
<artifactId>helidon-data-sql-testing</artifactId>
729-
<version>${helidon.version}</version>
730-
</dependency>
731726
<dependency>
732727
<groupId>io.helidon.data.sql.datasource</groupId>
733728
<artifactId>helidon-data-sql-datasource</artifactId>

data/sql/testing/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<properties>
3535
<!-- due to a package split in testcontainers, we cannot use module-info.java -->
3636
<helidon.services.skip>true</helidon.services.skip>
37+
<maven.deploy.skip>true</maven.deploy.skip>
3738
</properties>
3839

3940
<dependencies>

data/tests/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@
3939
<dependency-check.skip>true</dependency-check.skip>
4040
</properties>
4141

42+
<dependencyManagement>
43+
<dependencies>
44+
<dependency>
45+
<groupId>io.helidon.data.sql</groupId>
46+
<artifactId>helidon-data-sql-testing</artifactId>
47+
<version>${project.version}</version>
48+
</dependency>
49+
</dependencies>
50+
</dependencyManagement>
51+
4252
<modules>
4353
<module>sql</module>
4454
<module>model</module>

tests/integration/transaction/data-mp/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@
3131
<artifactId>io.helidon.data.tests.integration.transaction.data.mp-project</artifactId>
3232
<name>Helidon Tests Integration Transactions Data with MP Project</name>
3333

34+
<dependencyManagement>
35+
<dependencies>
36+
<dependency>
37+
<groupId>io.helidon.data.sql</groupId>
38+
<artifactId>helidon-data-sql-testing</artifactId>
39+
<version>${project.version}</version>
40+
</dependency>
41+
</dependencies>
42+
</dependencyManagement>
43+
3444
<modules>
3545
<module>data-mp</module>
3646
<module>eclipselink</module>

0 commit comments

Comments
 (0)