Skip to content

Commit c4d42e5

Browse files
committed
POM: split versions to properties
This enables versions to be overridden more easily downstream.
1 parent 8c4568a commit c4d42e5

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

pom.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ Institute of Molecular Cell Biology and Genetics, and KNIME GmbH.</license.copyr
105105
<maven.version>3.0</maven.version>
106106
<maven2.version>2.2.1</maven2.version>
107107
<maven-tree.version>2.2</maven-tree.version>
108+
<maven-plugin-annotations.version>3.5</maven-plugin-annotations.version>
109+
<maven-artifact-transfer.version>0.9.1</maven-artifact-transfer.version>
110+
<maven-common-artifact-filters.version>3.0.1</maven-common-artifact-filters.version>
111+
<plexus-interpolation.version>1.24</plexus-interpolation.version>
112+
<plexus-utils.version>3.1.0</plexus-utils.version>
108113
</properties>
109114

110115
<dependencies>
@@ -165,7 +170,7 @@ Institute of Molecular Cell Biology and Genetics, and KNIME GmbH.</license.copyr
165170
<dependency>
166171
<groupId>org.apache.maven.plugin-tools</groupId>
167172
<artifactId>maven-plugin-annotations</artifactId>
168-
<version>3.5</version>
173+
<version>${maven-plugin-annotations.version}</version>
169174
</dependency>
170175
<dependency>
171176
<groupId>junit</groupId>
@@ -192,23 +197,23 @@ Institute of Molecular Cell Biology and Genetics, and KNIME GmbH.</license.copyr
192197
<dependency>
193198
<groupId>org.apache.maven.shared</groupId>
194199
<artifactId>maven-artifact-transfer</artifactId>
195-
<version>0.9.1</version>
200+
<version>${maven-artifact-transfer.version}</version>
196201
</dependency>
197202
<dependency>
198203
<groupId>org.apache.maven.shared</groupId>
199204
<artifactId>maven-common-artifact-filters</artifactId>
200-
<version>3.0.1</version>
205+
<version>${maven-common-artifact-filters.version}</version>
201206
</dependency>
202207

203208
<dependency>
204209
<groupId>org.codehaus.plexus</groupId>
205210
<artifactId>plexus-interpolation</artifactId>
206-
<version>1.24</version>
211+
<version>${plexus-interpolation.version}</version>
207212
</dependency>
208213
<dependency>
209214
<groupId>org.codehaus.plexus</groupId>
210215
<artifactId>plexus-utils</artifactId>
211-
<version>3.1.0</version>
216+
<version>${plexus-utils.version}</version>
212217
</dependency>
213218

214219
<dependency>

0 commit comments

Comments
 (0)