You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/05/14 10:18:07 UTC

svn commit: r1338054 - in /jena/trunk: jena-core/pom.xml jena-parent/pom.xml

Author: andy
Date: Mon May 14 08:18:07 2012
New Revision: 1338054

URL: http://svn.apache.org/viewvc?rev=1338054&view=rev
Log:
Update dependency versions; move Xerces dependency out of parent into core

Modified:
    jena/trunk/jena-core/pom.xml
    jena/trunk/jena-parent/pom.xml

Modified: jena/trunk/jena-core/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-core/pom.xml?rev=1338054&r1=1338053&r2=1338054&view=diff
==============================================================================
--- jena/trunk/jena-core/pom.xml (original)
+++ jena/trunk/jena-core/pom.xml Mon May 14 08:18:07 2012
@@ -54,17 +54,26 @@
 
   <properties>
     <this.root>${project.artifactId}-${project.version}</this.root>
+    <ver.xerces>2.10.0</ver.xerces>
     <ver.iri>0.9.1-SNAPSHOT</ver.iri>
     <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format>
     <build.time.xsd>${maven.build.timestamp}</build.time.xsd>
   </properties>
 
   <dependencies>
+
+     <dependency>
+       <groupId>xerces</groupId>
+       <artifactId>xercesImpl</artifactId>
+       <version>${ver.xerces}</version>
+     </dependency>
+
     <dependency>
        <groupId>org.apache.jena</groupId>
        <artifactId>jena-iri</artifactId>
        <version>${ver.iri}</version>
     </dependency>
+
   </dependencies>
 
   <build>

Modified: jena/trunk/jena-parent/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-parent/pom.xml?rev=1338054&r1=1338053&r2=1338054&view=diff
==============================================================================
--- jena/trunk/jena-parent/pom.xml (original)
+++ jena/trunk/jena-parent/pom.xml Mon May 14 08:18:07 2012
@@ -52,7 +52,6 @@
 
   <properties>
     <!-- Versions of other things -->
-    <ver.xerces>2.10.0</ver.xerces>
     <ver.junit>4.9</ver.junit>
     <ver.slf4j>1.6.4</ver.slf4j>
     <ver.log4j>1.2.16</ver.log4j>
@@ -65,15 +64,8 @@
   </properties>
 
   <!-- General dependencies for all systems -->
-
   <dependencies>
      <dependency>
-       <groupId>xerces</groupId>
-       <artifactId>xercesImpl</artifactId>
-       <version>${ver.xerces}</version>
-     </dependency>
-
-     <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${ver.junit}</version>
@@ -121,12 +113,13 @@
   </dependencies>
 
   <build>
+    <!-- Plugin version list: http://maven.apache.org/plugins/index.html -->
     <pluginManagement>
       <plugins>
 	<plugin>
 	  <groupId>org.apache.maven.plugins</groupId>
 	  <artifactId>maven-compiler-plugin</artifactId>
-	  <version>2.3.2</version>
+	  <version>2.4</version>
 	  <configuration>
 	    <encoding>UTF-8</encoding>
 	    <debug>true</debug>
@@ -140,13 +133,13 @@
 	<plugin>
 	  <groupId>org.apache.maven.plugins</groupId>
 	  <artifactId>maven-surefire-plugin</artifactId>
-	  <version>2.9</version>
+	  <version>2.12</version>
 	</plugin>
 	
 	<plugin>
 	  <groupId>org.apache.maven.plugins</groupId>
 	  <artifactId>maven-jar-plugin</artifactId>
-	  <version>2.3.2</version>
+	  <version>2.4</version>
 	</plugin>
 
 	<plugin>
@@ -174,7 +167,7 @@
 	<plugin>
 	  <groupId>org.apache.maven.plugins</groupId>
 	  <artifactId>maven-javadoc-plugin</artifactId>
-	  <version>2.8</version>
+	  <version>2.8.1</version>
 	  <executions>
 	    <execution>
 	      <id>attach-javadocs</id>
@@ -206,6 +199,7 @@
 	<plugin>
 	  <groupId>org.apache.maven.plugins</groupId>
 	  <artifactId>maven-dependency-plugin</artifactId>
+	  <version>2.4</version>
 	  <configuration>
 	    <overWriteReleases>false</overWriteReleases>
 	    <overWriteIfNewer>true</overWriteIfNewer>
@@ -215,7 +209,7 @@
 	<plugin>
 	  <groupId>org.apache.maven.plugins</groupId>
 	  <artifactId>maven-eclipse-plugin</artifactId>
-	  <version>2.8</version>
+	  <version>2.9</version>
 	  <configuration>
 	    <!-- By default, have separate Eclipse and maven build areas -->
 	    <buildOutputDirectory>${project.build.directory}/classes-eclipse</buildOutputDirectory>