diff options
| author | Robert Gemmell <robbie@apache.org> | 2014-02-06 15:20:34 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2014-02-06 15:20:34 +0000 |
| commit | 2762f18d32aa2aadc66dfccf94bea823df75336e (patch) | |
| tree | 17d0b4bef7975c41435f4ed2fcdcabf833957382 /qpid/java/broker-core | |
| parent | 0e959638373f85c341780df7d30db45761287355 (diff) | |
| download | qpid-python-2762f18d32aa2aadc66dfccf94bea823df75336e.tar.gz | |
QPID-5048: Maven POM refactoring - names, descriptions, dependencies & versions
Patch supplied by Andrew MacBean <andymacbean@gmail.com>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1565303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-core')
| -rw-r--r-- | qpid/java/broker-core/pom.xml | 50 |
1 files changed, 12 insertions, 38 deletions
diff --git a/qpid/java/broker-core/pom.xml b/qpid/java/broker-core/pom.xml index 7254de0251..4621a8df75 100644 --- a/qpid/java/broker-core/pom.xml +++ b/qpid/java/broker-core/pom.xml @@ -16,14 +16,18 @@ limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> <groupId>org.apache.qpid</groupId> - <artifactId>qpid-project</artifactId> - <version>0.26-SNAPSHOT</version> + <artifactId>qpid-parent</artifactId> + <version>1.0-SNAPSHOT</version> </parent> - <modelVersion>4.0.0</modelVersion> <artifactId>qpid-broker-core</artifactId> + <version>0.28-SNAPSHOT</version> + <name>Qpid Java Broker Core</name> + <description>Broker core functionality and initial configuration</description> <properties> <generated-logmessages-dir>${basedir}/src/main/java</generated-logmessages-dir> @@ -33,50 +37,38 @@ <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-common</artifactId> - <version>0.26-SNAPSHOT</version> - <scope>compile</scope> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-management-common</artifactId> - <version>0.26-SNAPSHOT</version> - <scope>compile</scope> + <version>${project.version}</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> - <version>${log4j-version}</version> - <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> - <version>${slf4j-version}</version> - <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> - <version>${slf4j-version}</version> - <scope>compile</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> - <version>1.1.1</version> - <scope>compile</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> - <version>2.7.0</version> - <scope>compile</scope> <exclusions> <exclusion> <groupId>xml-apis</groupId> @@ -88,15 +80,11 @@ <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils-core</artifactId> - <version>1.8.3</version> - <scope>compile</scope> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> - <version>1.8.1</version> - <scope>compile</scope> <exclusions> <exclusion> <groupId>commons-beanutils</groupId> @@ -108,50 +96,36 @@ <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - <version>1.6</version> - <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> - <version>2.6</version> - <scope>compile</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> - <version>3.2.1</version> - <scope>compile</scope> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> - <version>1.8</version> - <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> - <version>1.9.0</version> - <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> - <version>1.9.0</version> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.bcel</groupId> <artifactId>bcel</artifactId> - <version>5.2</version> - <scope>compile</scope> <exclusions> <exclusion> <!-- Qpid doesn't require BCEL InstructionFinder, so does not need jakarta-regexp. --> @@ -165,7 +139,7 @@ <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-test-utils</artifactId> - <version>0.26-SNAPSHOT</version> + <version>${project.version}</version> <scope>test</scope> </dependency> @@ -261,12 +235,12 @@ <dependency> <groupId>velocity</groupId> <artifactId>velocity</artifactId> - <version>1.4</version> + <version>${velocity-version}</version> </dependency> <dependency> <groupId>velocity</groupId> <artifactId>velocity-dep</artifactId> - <version>1.4</version> + <version>${velocity-version}</version> </dependency> </dependencies> </plugin> |
