Skip to content

Commit 028d410

Browse files
committed
define version via property acs.aem.commons.version
1 parent 25c5407 commit 028d410

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

  • tooling/conga-aem-maven-plugin/src/it

tooling/conga-aem-maven-plugin/src/it/example/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838
<name>CONGA AEM Plugin Example</name>
3939
<description>Example definitions and templates.</description>
4040

41+
<properties>
42+
<acs.aem.commons.version>6.12.0</acs.aem.commons.version>
43+
</properties>
44+
4145
<dependencies>
4246

4347
<!-- Example content package to download and extract metadata -->
@@ -53,14 +57,14 @@
5357
<dependency>
5458
<groupId>com.adobe.acs</groupId>
5559
<artifactId>acs-aem-commons-ui.apps</artifactId>
56-
<version>6.12.0</version>
60+
<version>${acs.aem.commons.version}</version>
5761
<type>zip</type>
5862
<scope>compile</scope>
5963
</dependency>
6064
<dependency>
6165
<groupId>com.adobe.acs</groupId>
6266
<artifactId>acs-aem-commons-ui.content</artifactId>
63-
<version>6.12.0</version>
67+
<version>${acs.aem.commons.version}</version>
6468
<type>zip</type>
6569
<scope>compile</scope>
6670
</dependency>

tooling/conga-aem-maven-plugin/src/it/mixed-no-package-type/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,24 @@
3838
<name>Mixed/No Package Type</name>
3939
<description>Test case with packages with "mixed" package types, and packages without package type and "all" package.</description>
4040

41+
<properties>
42+
<acs.aem.commons.version>6.12.0</acs.aem.commons.version>
43+
</properties>
44+
4145
<dependencies>
4246

4347
<!-- ACS AEM Commons -->
4448
<dependency>
4549
<groupId>com.adobe.acs</groupId>
4650
<artifactId>acs-aem-commons-ui.apps</artifactId>
47-
<version>6.12.0</version>
51+
<version>${acs.aem.commons.version}</version>
4852
<type>zip</type>
4953
<scope>compile</scope>
5054
</dependency>
5155
<dependency>
5256
<groupId>com.adobe.acs</groupId>
5357
<artifactId>acs-aem-commons-ui.content</artifactId>
54-
<version>6.12.0</version>
58+
<version>${acs.aem.commons.version}</version>
5559
<type>zip</type>
5660
<scope>compile</scope>
5761
</dependency>

0 commit comments

Comments
 (0)