You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2011/11/26 19:54:00 UTC

svn commit: r1206539 - in /incubator/rat/whisker/trunk: apache-whisker-model/pom.xml pom.xml

Author: rdonkin
Date: Sat Nov 26 18:53:59 2011
New Revision: 1206539

URL: http://svn.apache.org/viewvc?rev=1206539&view=rev
Log:
Added model module to build.

Modified:
    incubator/rat/whisker/trunk/apache-whisker-model/pom.xml
    incubator/rat/whisker/trunk/pom.xml

Modified: incubator/rat/whisker/trunk/apache-whisker-model/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rat/whisker/trunk/apache-whisker-model/pom.xml?rev=1206539&r1=1206538&r2=1206539&view=diff
==============================================================================
--- incubator/rat/whisker/trunk/apache-whisker-model/pom.xml (original)
+++ incubator/rat/whisker/trunk/apache-whisker-model/pom.xml Sat Nov 26 18:53:59 2011
@@ -24,143 +24,52 @@
 >
   <modelVersion>4.0.0</modelVersion>
 
+  <parent>
+    <groupId>org.apache.rat.whisker</groupId>
+    <artifactId>apache-whisker</artifactId>
+    <version>0.1-SNAPSHOT</version>
+  </parent>
+
   <groupId>org.apache.rat.whisker</groupId>
-  <artifactId>apache-rat-whisker</artifactId>
-  <version>0.1-SNAPSHOT</version>
+  <artifactId>apache-whisker-model</artifactId>
   <packaging>jar</packaging>
 
   <dependencies>
     <dependency>
         <groupId>org.apache.velocity</groupId>
         <artifactId>velocity</artifactId>
-        <version>1.7</version>
     </dependency>
   
     <dependency>
         <groupId>org.jdom</groupId>
         <artifactId>jdom</artifactId>
-        <version>1.1</version>
     </dependency>
 
     <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-lang3</artifactId>
-        <version>3.0</version>
     </dependency>
 
     <dependency>
         <groupId>commons-cli</groupId>
         <artifactId>commons-cli</artifactId>
-        <version>1.2</version>
     </dependency>
       
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-
-
-<!-- 
-
-=================================
-Build
--->
-  <build>
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-jar-plugin</artifactId>
-          <version>2.3.1</version>
-          <configuration>
-            <archive>
-              <manifest>
-                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-                <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
-              </manifest>
-            </archive>
-          </configuration>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-shade-plugin</artifactId>
-        <version>1.5-SNAPSHOT</version>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>shade</goal>
-            </goals>
-  
-            <configuration>
-               <transformers>
-                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-                  <manifestEntries>
-                    <Main-Class>org.apache.rat.whisker.legacy.cli.Main</Main-Class>
-                  </manifestEntries>
-                </transformer>
-              </transformers>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <version>0.8-SNAPSHOT</version>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>check</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin> 
-     </plugins>
-  </build>
-
+    
   <!-- 
   
   
   ================================  
   Project information
   -->
-  <name>whisker</name>
-  <description></description>
-  <url>http://rat.apache.org/whisker</url>
-  <inceptionYear>2011</inceptionYear>
-  <licenses>
-    <license>
-      <name>Apache License, Version 2</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-      <comments>An OSI approved open source license.</comments>
-    </license>
-  </licenses>
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://www.apache.org</url>
-  </organization>
-
-  <!-- 
-  
-  
-  ================================ 
-  Environment -->
-  <prerequisites>
-    <maven>3.0.2</maven>
-  </prerequisites>
+  <name>Apache Whisker::Model</name>
+  <description>Models licensing meta-data.</description>
+  <url>http://rat.apache.org/whisker/apache-whisker-model</url>
 
 </project>

Modified: incubator/rat/whisker/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rat/whisker/trunk/pom.xml?rev=1206539&r1=1206538&r2=1206539&view=diff
==============================================================================
--- incubator/rat/whisker/trunk/pom.xml (original)
+++ incubator/rat/whisker/trunk/pom.xml Sat Nov 26 18:53:59 2011
@@ -71,16 +71,35 @@
   </dependencyManagement>
 
   <modules>
+    <module>apache-whisker-model</module>
   </modules>
 
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <target.jdk>1.5</target.jdk>
   </properties>
 
+  <!-- ================================ Build information -->
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>${target.jdk}</source>
+            <target>${target.jdk}</target>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+  
+
   <!-- ================================ Project information -->
   
-  <name>Apache Rat::Whisker</name>
+  <name>Apache Rat Whisker</name>
   <description>Apache Whisker wrangles legal documentation for composed applications.</description>
   <url>http://rat.apache.org/whisker</url>
   <inceptionYear>2011</inceptionYear>