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

svn commit: r1396973 - /jena/Scratch/Eyeball/trunk/pom.xml

Author: chrisdollin
Date: Thu Oct 11 10:19:17 2012
New Revision: 1396973

URL: http://svn.apache.org/viewvc?rev=1396973&view=rev
Log:
A POM that creates an executable uberjar.

Modified:
    jena/Scratch/Eyeball/trunk/pom.xml

Modified: jena/Scratch/Eyeball/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jena/Scratch/Eyeball/trunk/pom.xml?rev=1396973&r1=1396972&r2=1396973&view=diff
==============================================================================
--- jena/Scratch/Eyeball/trunk/pom.xml (original)
+++ jena/Scratch/Eyeball/trunk/pom.xml Thu Oct 11 10:19:17 2012
@@ -1,10 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <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">
-
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
-
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.epimorphics.eyeball</groupId>
   <artifactId>eyeball</artifactId>
@@ -14,88 +12,51 @@
   <description>Eyeball -- an RDF lint</description>
 
   <build>
-    <pluginManagement>
       <plugins>
 
-      <plugin>
+        <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-resources-plugin</artifactId>
-          <configuration> <encoding>UTF-8</encoding> </configuration>
-          </plugin>
-
-        <plugin>
-            <artifactId>maven-assembly-plugin</artifactId>
-            <executions>
-                <execution>
-                    <id>create-executable-jar</id>
-                    <phase>package</phase>
-                    <goals>
-                        <goal>single</goal>
-                    </goals>
-                    <configuration>
-                        <descriptorRefs>
-                            <descriptorRef>jar-with-dependencies</descriptorRef>
-                        </descriptorRefs>
-                        <archive>
-                            <manifest>
-                                <mainClass>jena.eyeball</mainClass>
-                                <packageName>jena.eyeball</packageName>
-                            </manifest>
-                        </archive>
-                    </configuration>
-                </execution>
-            </executions>
+          <configuration>
+            <encoding>UTF-8</encoding>
+          </configuration>
         </plugin>
 
-        <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.6</source>
-                    <target>1.6</target>
-                    <encoding>UTF-8</encoding>
-                </configuration>
-            </plugin>
-      </plugins>
-    </pluginManagement>
-
-    <extensions>
-      <extension>
-  <groupId>org.apache.maven.wagon</groupId>
-  <artifactId>wagon-ftp</artifactId>
-  <version>1.0-beta-2</version>
-      </extension>
-    </extensions>
-    <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.8</version>
-        <configuration>
-          <!-- Default configuration for all reports -->
-        </configuration>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.3</version>
         <executions>
           <execution>
-            <id>aggregate</id>
-            <goals>
-              <goal>aggregate</goal>
-            </goals>
+            <id>create-server-assembly</id>
+            <phase>package</phase>
+            <goals><goal>single</goal></goals>
             <configuration>
+                 <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs>
+              <archive>
+                <manifest>
+                  <mainClass>jena.eyeball</mainClass>
+                </manifest>
+              </archive>
             </configuration>
           </execution>
         </executions>
       </plugin>
-    </plugins>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.6</source>
+            <target>1.6</target>
+            <encoding>UTF-8</encoding>
+          </configuration>
+        
+        </plugin>
+      </plugins>
+    
   </build>
 
   <dependencies>
-
-    <dependency>
-      <groupId>org.apache.lucene</groupId>
-      <artifactId>lucene-core</artifactId>
-      <version>3.5.0</version>
-    </dependency>
-
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
@@ -103,7 +64,6 @@
       <type>jar</type>
       <scope>compile</scope>
     </dependency>
-
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
@@ -111,15 +71,13 @@
       <type>jar</type>
       <scope>compile</scope>
     </dependency>
-
     <dependency>
-        <groupId>org.apache.jena</groupId>
-        <artifactId>jena-core</artifactId>
-        <version>2.7.0-incubating</version>
-        <type>jar</type>
-        <scope>compile</scope>
+      <groupId>org.apache.jena</groupId>
+      <artifactId>jena-core</artifactId>
+      <version>2.7.0-incubating</version>
+      <type>jar</type>
+      <scope>compile</scope>
     </dependency>
-
     <dependency>
       <groupId>org.apache.jena</groupId>
       <artifactId>jena-core</artifactId>
@@ -127,13 +85,11 @@
       <type>test-jar</type>
       <scope>test</scope>
     </dependency>
-
     <dependency>
-        <groupId>org.apache.jena</groupId>
-        <artifactId>jena-arq</artifactId>
-        <version>2.9.0-incubating</version>
+      <groupId>org.apache.jena</groupId>
+      <artifactId>jena-arq</artifactId>
+      <version>2.9.0-incubating</version>
     </dependency>
-
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
@@ -141,15 +97,12 @@
       <type>jar</type>
       <scope>compile</scope>
     </dependency>
-
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
       <version>1.2.16</version>
       <type>jar</type>
       <scope>compile</scope>
-
     </dependency>
   </dependencies>
-
 </project>