diff options
Diffstat (limited to 'common/pom.xml')
-rw-r--r-- | common/pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/common/pom.xml b/common/pom.xml index c5bf69ffb..cde0c6ed8 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -3,10 +3,11 @@ <parent> <groupId>MOA</groupId> <artifactId>MOA</artifactId> - <version>2.0.2</version> + <version>2.x</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>moa-common</artifactId> + <version>${moa-commons-version}</version> <packaging>jar</packaging> <name>MOA common library</name> @@ -102,6 +103,25 @@ <build> <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>properties-maven-plugin</artifactId> + <version>1.0-alpha-2</version> + <executions> + <execution> + <phase>initialize</phase> + <goals> + <goal>read-project-properties</goal> + </goals> + <configuration> + <files> + <file>${basedir}/../moa-id.properties</file> + </files> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> |