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 2014/06/26 13:01:21 UTC

svn commit: r1605734 - /jena/Experimental/jena-fuseki2/pom.xml

Author: andy
Date: Thu Jun 26 11:01:20 2014
New Revision: 1605734

URL: http://svn.apache.org/r1605734
Log:
Clean up the POM

Modified:
    jena/Experimental/jena-fuseki2/pom.xml

Modified: jena/Experimental/jena-fuseki2/pom.xml
URL: http://svn.apache.org/viewvc/jena/Experimental/jena-fuseki2/pom.xml?rev=1605734&r1=1605733&r2=1605734&view=diff
==============================================================================
--- jena/Experimental/jena-fuseki2/pom.xml (original)
+++ jena/Experimental/jena-fuseki2/pom.xml Thu Jun 26 11:01:20 2014
@@ -20,9 +20,15 @@
   <modelVersion>4.0.0</modelVersion>
 
   <name>Apache Jena - Fuseki (SPARQL 1.1 Server)</name>
-  <groupId>org.apache.jena</groupId>
   <artifactId>jena-fuseki2</artifactId>
 
+  <parent>
+    <groupId>org.apache.jena</groupId>
+    <artifactId>jena-parent</artifactId>
+    <version>10-SNAPSHOT</version>
+    <relativePath>../jena-parent</relativePath>
+  </parent> 
+
   <!-- We make the JAR file so that the shade plugin includes it.
        The war:war goal is added to the package phase.
   -->
@@ -31,12 +37,6 @@
   <description>Fuseki is a SPARQL 1.1 Server which provides query, update and graph store protocol endpoints that can be used to expose triple stores over HTTP</description>
   <url>http://jena.apache.org/</url>
 
-  <parent>
-    <groupId>org.apache.jena</groupId>
-    <artifactId>jena-parent</artifactId>
-    <version>10-SNAPSHOT</version>
-    <relativePath>../jena-parent</relativePath>
-  </parent> 
 
   <!-- Need if the parent is a snapshot -->
   <repositories>
@@ -75,8 +75,6 @@
     <ver.jetty>9.1.1.v20140108</ver.jetty>
     <ver.shiro>1.2.2</ver.shiro>
 
-    <ver.commons-fileupload>1.3.1</ver.commons-fileupload>
-
     <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>
@@ -155,13 +153,11 @@
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>
-      <version>${ver.junit}</version>
     </dependency>
 
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
-      <version>${ver.httpclient}</version>
       <exclusions>
         <!-- Replace with slf4j adapter -->
         <exclusion>
@@ -174,7 +170,6 @@
     <dependency>
       <groupId>commons-fileupload</groupId>
       <artifactId>commons-fileupload</artifactId>
-      <version>${ver.commons-fileupload}</version>
     </dependency>
 
     <dependency>
@@ -203,27 +198,23 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>${ver.slf4j}</version>
     </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
-      <version>${ver.slf4j}</version>
     </dependency>
 
     <!-- Intercept any uses of Jakarta Commons Logging e.g. Apache Common HTTP client. -->
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>jcl-over-slf4j</artifactId>
-      <version>${ver.slf4j}</version>
     </dependency>
 
     <!-- Needed because the Fuseki command line and the test suite reset logging levels -->
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>${ver.log4j}</version>
       <exclusions>
         <exclusion>
           <groupId>javax.jms</groupId>