Skip to content

Commit 10cc3a5

Browse files
committed
define version of main artifacts in POM
1 parent 523489b commit 10cc3a5

File tree

2 files changed

+18
-22
lines changed

2 files changed

+18
-22
lines changed

integration-test/launchpad-test/pom.xml

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,30 @@
4040
</description>
4141

4242
<properties>
43-
<!-- Java version -->
4443
<java.version>17</java.version>
45-
46-
<!-- Sling Starter version -->
4744
<sling.starter.version>14-SNAPSHOT</sling.starter.version>
45+
<jaxws.consumer.version>1.1.3-SNAPSHOT</jaxws.consumer.version>
46+
<jaxws.publisher.version>1.0.3-SNAPSHOT</jaxws.publisher.version>
4847

49-
<!-- start with -DkeepITServerRunning=true to allow to rerun ITs or inspect the server after the ITs have been executed there -->
5048
<starter.min.bundles.count>200</starter.min.bundles.count>
5149
<it.startTimeoutSeconds>60</it.startTimeoutSeconds>
5250
</properties>
5351

5452
<dependencies>
5553

56-
<!-- Additional bundles needed by the Sling instance under test -->
54+
<dependency>
55+
<groupId>io.wcm.caravan</groupId>
56+
<artifactId>io.wcm.caravan.jaxws.consumer</artifactId>
57+
<version>${jaxws.consumer.version}</version>
58+
<scope>compile</scope>
59+
</dependency>
60+
<dependency>
61+
<groupId>io.wcm.caravan</groupId>
62+
<artifactId>io.wcm.caravan.jaxws.publisher</artifactId>
63+
<version>${jaxws.publisher.version}</version>
64+
<scope>compile</scope>
65+
</dependency>
66+
5767
<dependency>
5868
<groupId>org.apache.sling</groupId>
5969
<artifactId>org.apache.sling.junit.teleporter</artifactId>
@@ -66,7 +76,6 @@
6676
</exclusion>
6777
</exclusions>
6878
</dependency>
69-
<!-- Dependencies for the Test Build and Run -->
7079
<dependency>
7180
<groupId>org.apache.sling</groupId>
7281
<artifactId>org.apache.sling.commons.testing</artifactId>
@@ -158,7 +167,7 @@
158167
<extensions>true</extensions>
159168

160169
<configuration>
161-
<replacePropertyVariables>apache-cxf-version</replacePropertyVariables>
170+
<replacePropertyVariables>jaxws.consumer.version,jaxws.publisher.version,apache-cxf-version</replacePropertyVariables>
162171
<skipAddFeatureDependencies>true</skipAddFeatureDependencies>
163172
<aggregates>
164173
<aggregate>
@@ -346,19 +355,6 @@
346355
</build>
347356
</profile>
348357

349-
<!-- "Fast" profile for quick compile of the project without any unit tests etc. -->
350-
<profile>
351-
<id>fast</id>
352-
<activation>
353-
<activeByDefault>false</activeByDefault>
354-
</activation>
355-
<properties>
356-
<unittests.skip>true</unittests.skip>
357-
<integrationtests.skip>true</integrationtests.skip>
358-
<maven.javadoc.skip>true</maven.javadoc.skip>
359-
</properties>
360-
</profile>
361-
362358
</profiles>
363359

364360
</project>

integration-test/launchpad-test/src/main/features/launcher.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
"start-order": 15
3333
},
3434
{
35-
"id": "io.wcm.caravan/io.wcm.caravan.jaxws.consumer/1.1.3-SNAPSHOT",
35+
"id": "io.wcm.caravan/io.wcm.caravan.jaxws.consumer/${jaxws.consumer.version}",
3636
"start-order": 20
3737
},
3838
{
39-
"id": "io.wcm.caravan/io.wcm.caravan.jaxws.publisher/1.0.3-SNAPSHOT",
39+
"id": "io.wcm.caravan/io.wcm.caravan.jaxws.publisher/${jaxws.publisher.version}",
4040
"start-order": 20
4141
},
4242
{

0 commit comments

Comments
 (0)