diff options
author | Olivier Lamy <olamy@apache.org> | 2011-06-21 22:37:08 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2011-06-21 22:37:08 +0000 |
commit | d6a4fe82a685a5897acdc2dc1aef0b86e194fa4c (patch) | |
tree | 8536d03f51bfd041df7f58fe1bd89d0887bef77d /pom.xml | |
parent | 8ae8adccb9f4b4cbb6f8d9aa0b90cbdd21ca0509 (diff) | |
download | archiva-d6a4fe82a685a5897acdc2dc1aef0b86e194fa4c.tar.gz archiva-d6a4fe82a685a5897acdc2dc1aef0b86e194fa4c.zip |
move lucene version to a property
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1138226 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 83 |
1 files changed, 43 insertions, 40 deletions
@@ -74,6 +74,7 @@ <jackrabbit.version>2.2.5</jackrabbit.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile> + <lucene.version>2.4.1</lucene.version> </properties> <dependencyManagement> @@ -106,41 +107,7 @@ <artifactId>xercesImpl</artifactId> <version>2.8.1</version> </dependency> - <dependency> - <groupId>org.sonatype.nexus</groupId> - <artifactId>nexus-indexer</artifactId> - <version>3.0.1</version> - <exclusions> - <exclusion> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-container-default</artifactId> - </exclusion> - <exclusion> - <groupId>classworlds</groupId> - <artifactId>classworlds</artifactId> - </exclusion> - <exclusion> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - </exclusion> - <exclusion> - <groupId>velocity</groupId> - <artifactId>velocity-dep</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-registry</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.maven</groupId> - <artifactId>maven-settings</artifactId> - </exclusion> - <exclusion> - <groupId>com.google.code.atinject</groupId> - <artifactId>atinject</artifactId> - </exclusion> - </exclusions> - </dependency> + <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> @@ -268,10 +235,41 @@ <version>1.4-SNAPSHOT</version> </dependency> <dependency> - <groupId>org.apache.archiva</groupId> - <artifactId>archiva-lucene-consumers</artifactId> - <version>1.4-SNAPSHOT</version> + <groupId>org.sonatype.nexus</groupId> + <artifactId>nexus-indexer</artifactId> + <version>3.0.1</version> + <exclusions> + <exclusion> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-container-default</artifactId> + </exclusion> + <exclusion> + <groupId>classworlds</groupId> + <artifactId>classworlds</artifactId> + </exclusion> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + <exclusion> + <groupId>velocity</groupId> + <artifactId>velocity-dep</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-registry</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-settings</artifactId> + </exclusion> + <exclusion> + <groupId>com.google.code.atinject</groupId> + <artifactId>atinject</artifactId> + </exclusion> + </exclusions> </dependency> + <dependency> <groupId>org.apache.archiva</groupId> <artifactId>archiva-plexus-bridge</artifactId> @@ -540,14 +538,19 @@ <version>1.2.14</version> </dependency> <dependency> + <groupId>org.apache.archiva</groupId> + <artifactId>archiva-lucene-consumers</artifactId> + <version>1.4-SNAPSHOT</version> + </dependency> + <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> - <version>2.4.1</version> + <version>${lucene.version}</version> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-queries</artifactId> - <version>2.4.1</version> + <version>${lucene.version}</version> </dependency> <dependency> <groupId>javax.mail</groupId> |