You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by tc...@apache.org on 2006/05/02 12:12:52 UTC

svn commit: r398887 - in /jakarta/commons/sandbox/jci/trunk: ./ core/ tests/ tests/src/test/org/apache/commons/jci/compilers/eclipse/ tests/src/test/org/apache/commons/jci/compilers/groovy/ tests/src/test/org/apache/commons/jci/compilers/janino/

Author: tcurdt
Date: Tue May  2 03:12:49 2006
New Revision: 398887

URL: http://svn.apache.org/viewcvs?rev=398887&view=rev
Log:
moved the reports into the core, url fix, remove empty dirs

Removed:
    jakarta/commons/sandbox/jci/trunk/tests/src/test/org/apache/commons/jci/compilers/eclipse/
    jakarta/commons/sandbox/jci/trunk/tests/src/test/org/apache/commons/jci/compilers/groovy/
    jakarta/commons/sandbox/jci/trunk/tests/src/test/org/apache/commons/jci/compilers/janino/
Modified:
    jakarta/commons/sandbox/jci/trunk/core/pom.xml
    jakarta/commons/sandbox/jci/trunk/pom.xml
    jakarta/commons/sandbox/jci/trunk/tests/pom.xml

Modified: jakarta/commons/sandbox/jci/trunk/core/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/jci/trunk/core/pom.xml?rev=398887&r1=398886&r2=398887&view=diff
==============================================================================
--- jakarta/commons/sandbox/jci/trunk/core/pom.xml (original)
+++ jakarta/commons/sandbox/jci/trunk/core/pom.xml Tue May  2 03:12:49 2006
@@ -19,27 +19,72 @@
 
   <name>Jakarta Commons JCI Core</name>
 
+
+
+  <reporting>
+    <plugins>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+      <plugin>
+       <artifactId>maven-pmd-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>project-team</report>
+              <report>mailing-list</report>
+              <report>dependencies</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
+
   <dependencies>
+  
     <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
       <version>1.1</version>
     </dependency>
+
     <dependency>
       <groupId>commons-lang</groupId>
       <artifactId>commons-lang</artifactId>
       <version>2.1</version>
     </dependency>
+
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging-api</artifactId>
       <version>1.0.4</version>
     </dependency>
+
     <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections</artifactId>
       <version>3.1</version>
     </dependency>
+
   </dependencies>
 
 </project>

Modified: jakarta/commons/sandbox/jci/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/jci/trunk/pom.xml?rev=398887&r1=398886&r2=398887&view=diff
==============================================================================
--- jakarta/commons/sandbox/jci/trunk/pom.xml (original)
+++ jakarta/commons/sandbox/jci/trunk/pom.xml Tue May  2 03:12:49 2006
@@ -12,7 +12,7 @@
   <version>1.0-SNAPSHOT</version>
   
   <name>Jakarta Commons JCI</name>
-  <url>http://cocoon.apache.org</url>
+  <url>http://jakarta.apache.org/commons/sandbox/jci</url>
   <description>
     Common java compiler interface
   </description>
@@ -147,64 +147,6 @@
         <version>1.0-alpha-6</version>
       </extension>
     </extensions>
-
-    <plugins>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <includes>
-            <include>**/*TestCase.java</include>
-          </includes>
-          <excludes>
-            <exclude>**/Abstract*</exclude>
-          </excludes>
-          <testFailureIgnore>true</testFailureIgnore>
-        </configuration>
-      </plugin>
-    </plugins>
-
   </build>
 
-  <reporting>
-    <plugins>
-
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-      </plugin>
-
-      <plugin>
-       <artifactId>maven-site-plugin</artifactId>
-      </plugin>
-
-      <plugin>
-       <artifactId>maven-pmd-plugin</artifactId>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>dependencies</report>
-              <report>project-team</report>
-              <report>mailing-list</report>
-              <report>issue-tracking</report>
-              <report>license</report>
-              <report>scm</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jxr-maven-plugin</artifactId>
-      </plugin>
-
-    </plugins>
-  </reporting>
 </project>

Modified: jakarta/commons/sandbox/jci/trunk/tests/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/jci/trunk/tests/pom.xml?rev=398887&r1=398886&r2=398887&view=diff
==============================================================================
--- jakarta/commons/sandbox/jci/trunk/tests/pom.xml (original)
+++ jakarta/commons/sandbox/jci/trunk/tests/pom.xml Tue May  2 03:12:49 2006
@@ -19,6 +19,34 @@
 
   <name>Jakarta Commons JCI Tests</name>
 
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/*TestCase.java</include>
+          </includes>
+          <excludes>
+            <exclude>**/Abstract*</exclude>
+          </excludes>
+          <testFailureIgnore>true</testFailureIgnore>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <reporting>
+    <plugins>
+
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+
+    </plugins>
+  </reporting>
+  
   <dependencies>
 
     <dependency>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org