Author: ieugen
Date: Tue Dec 25 13:35:31 2012
New Revision: 1425741

URL: http://svn.apache.org/viewvc?rev=1425741&view=rev
Log:
JSIEVE-92 Removed useless files and plugin configurations

Removed:
    james/jsieve/trunk/manager/api/src/main/resources/META-INF/MANIFEST.MF
    james/jsieve/trunk/manager/core/src/main/resources/META-INF/MANIFEST.MF
    james/jsieve/trunk/manager/jsieve/src/main/resources/META-INF/MANIFEST.MF
    james/jsieve/trunk/manager/mailet/src/main/resources/META-INF/MANIFEST.MF
    james/jsieve/trunk/manager/mock/src/main/resources/META-INF/MANIFEST.MF
Modified:
    james/jsieve/trunk/all/pom.xml
    james/jsieve/trunk/core/pom.xml
    james/jsieve/trunk/mailet/pom.xml
    james/jsieve/trunk/pom.xml
    james/jsieve/trunk/util/pom.xml

Modified: james/jsieve/trunk/all/pom.xml
URL: 
http://svn.apache.org/viewvc/james/jsieve/trunk/all/pom.xml?rev=1425741&r1=1425740&r2=1425741&view=diff
==============================================================================
--- james/jsieve/trunk/all/pom.xml (original)
+++ james/jsieve/trunk/all/pom.xml Tue Dec 25 13:35:31 2012
@@ -80,7 +80,7 @@
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <configuration>
-                    
<descriptorSourceDirectory>${basedir}/src/assemble/</descriptorSourceDirectory>
+                    
<descriptorSourceDirectory>${project.basedir}/src/assemble/</descriptorSourceDirectory>
                     <tarLongFileMode>gnu</tarLongFileMode>
                 </configuration>
                 <executions>

Modified: james/jsieve/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/james/jsieve/trunk/core/pom.xml?rev=1425741&r1=1425740&r2=1425741&view=diff
==============================================================================
--- james/jsieve/trunk/core/pom.xml (original)
+++ james/jsieve/trunk/core/pom.xml Tue Dec 25 13:35:31 2012
@@ -93,22 +93,6 @@
                 </executions>
             </plugin>
             <plugin>
-                <groupId>org.apache.rat</groupId>
-                <artifactId>apache-rat-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>NOTICE.base</exclude>
-                        <exclude>LICENSE.apache</exclude>
-                        <exclude>release.properties</exclude>
-                        <exclude>BUILDING.txt</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-            </plugin>
-            <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>build-helper-maven-plugin</artifactId>
                 <version>1.7</version>
@@ -151,7 +135,7 @@
                                     <goal>attach-descriptor</goal>
                                 </goals>
                                 <configuration>
-                                    
<siteDirectory>${basedir}/src/site</siteDirectory>
+                                    
<siteDirectory>${project.basedir}/src/site</siteDirectory>
                                     <generateReports>false</generateReports>
                                 </configuration>
                             </execution>

Modified: james/jsieve/trunk/mailet/pom.xml
URL: 
http://svn.apache.org/viewvc/james/jsieve/trunk/mailet/pom.xml?rev=1425741&r1=1425740&r2=1425741&view=diff
==============================================================================
--- james/jsieve/trunk/mailet/pom.xml (original)
+++ james/jsieve/trunk/mailet/pom.xml Tue Dec 25 13:35:31 2012
@@ -106,22 +106,6 @@
         </dependency>
     </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.rat</groupId>
-                <artifactId>apache-rat-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>NOTICE.base</exclude>
-                        <exclude>LICENSE.apache</exclude>
-                        <exclude>release.properties</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
     <profiles>
         <!--
             Switches between generating the documentation site (without using 
this profile) and

Modified: james/jsieve/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/james/jsieve/trunk/pom.xml?rev=1425741&r1=1425740&r2=1425741&view=diff
==============================================================================
--- james/jsieve/trunk/pom.xml (original)
+++ james/jsieve/trunk/pom.xml Tue Dec 25 13:35:31 2012
@@ -238,32 +238,6 @@
         <pluginManagement>
             <plugins>
                 <plugin>
-                    <groupId>org.apache.rat</groupId>
-                    <artifactId>apache-rat-plugin</artifactId>
-                    <executions>
-                        <execution>
-                            <phase>verify</phase>
-                            <goals>
-                                <goal>check</goal>
-                            </goals>
-                        </execution>
-                    </executions>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.felix</groupId>
-                    <artifactId>maven-bundle-plugin</artifactId>
-                    <executions>
-                        <execution>
-                            <id>bundle-manifest</id>
-                            <phase>process-classes</phase>
-                            <goals>
-                                <goal>manifest</goal>
-                            </goals>
-                        </execution>
-                    </executions>
-                    <extensions>true</extensions>
-                </plugin>
-                <plugin>
                     <groupId>org.apache.james</groupId>
                     <artifactId>maven-mailetdocs-plugin</artifactId>
                     <version>0.1</version>
@@ -277,6 +251,15 @@
                 <version>2.3.7</version>
                 <extensions>true</extensions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*help.txt</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: james/jsieve/trunk/util/pom.xml
URL: 
http://svn.apache.org/viewvc/james/jsieve/trunk/util/pom.xml?rev=1425741&r1=1425740&r2=1425741&view=diff
==============================================================================
--- james/jsieve/trunk/util/pom.xml (original)
+++ james/jsieve/trunk/util/pom.xml Tue Dec 25 13:35:31 2012
@@ -85,20 +85,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.rat</groupId>
-                <artifactId>apache-rat-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>NOTICE.base</exclude>
-                        <exclude>LICENSE.apache</exclude>
-                        <exclude>release.properties</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to