You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2013/06/02 12:56:49 UTC

svn commit: r1488661 - in /incubator/jspwiki/trunk: mvn_cheat-sheet.txt pom.xml

Author: juanpablo
Date: Sun Jun  2 10:56:49 2013
New Revision: 1488661

URL: http://svn.apache.org/r1488661
Log:
* JSPWIKI-771: inherit ASF parent pom. Deleted release profile in favour of
  apache-release and gpg configuration (both present on parent pom);
  added <ciManagement/>, <issueManagement/> and <mailingLists/> sections.

Modified:
    incubator/jspwiki/trunk/mvn_cheat-sheet.txt
    incubator/jspwiki/trunk/pom.xml

Modified: incubator/jspwiki/trunk/mvn_cheat-sheet.txt
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/mvn_cheat-sheet.txt?rev=1488661&r1=1488660&r2=1488661&view=diff
==============================================================================
--- incubator/jspwiki/trunk/mvn_cheat-sheet.txt (original)
+++ incubator/jspwiki/trunk/mvn_cheat-sheet.txt Sun Jun  2 10:56:49 2013
@@ -5,14 +5,15 @@ mvn idea:idea       : generates IDEA Int
 
 Build specific
 **************
-mvn clean install                                        : performs a build
-mvn clean install -Dmaven.skip.test                      : performs a build, skipping the tests (not recommended)
-mvn clean test                                           : compiles the source and executes the tests
-mvn tomcat7:run-war                                      : (from a war module) starts JSPWiki on a 
-                                                           Tomcat7 instance at http://localhost:8080/JSPWiki
-mvn clean deploy -Prelease -Dgpg.passphrase=<passphrase> : deploys generated artifact to a repository
-                                                           If -Dgpg.passphrase is not given, it'll be asked
-mvn clean install -Pintegration-tests                    : performs a build, enabling Selenium tests execution
+mvn clean install                                               : performs a build
+mvn clean install -Dmaven.skip.test                             : performs a build, skipping the tests (not recommended)
+mvn clean test                                                  : compiles the source and executes the tests
+mvn tomcat7:run-war                                             : (from a war module) starts JSPWiki on a 
+                                                                  Tomcat7 instance at http://localhost:8080/JSPWiki
+mvn clean deploy -Papache-release -Dgpg.passphrase=<passphrase> : deploys generated artifact to a repository
+                                                                  If -Dgpg.passphrase is not given, expects a gpg-agent
+                                                                  running
+mvn clean install -Pintegration-tests                           : performs a build, enabling Selenium tests execution
 
 Reports specific
 ****************

Modified: incubator/jspwiki/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/pom.xml?rev=1488661&r1=1488660&r2=1488661&view=diff
==============================================================================
--- incubator/jspwiki/trunk/pom.xml (original)
+++ incubator/jspwiki/trunk/pom.xml Sun Jun  2 10:56:49 2013
@@ -21,6 +21,12 @@
          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">
 
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>13</version>
+  </parent>
+
   <groupId>org.apache.jspwiki</groupId>
   <artifactId>jspwiki-builder</artifactId>
   <modelVersion>4.0.0</modelVersion>
@@ -332,11 +338,6 @@
             </rules>
           </configuration>
         </plugin>
-        
-        <plugin>
-          <artifactId>maven-gpg-plugin</artifactId>
-          <version>1.4</version>
-        </plugin>
           
         <plugin>
           <artifactId>maven-jar-plugin</artifactId>
@@ -355,6 +356,14 @@
         </plugin>
           
         <plugin>
+          <artifactId>maven-install-plugin</artifactId>
+          <version>2.4</version>
+          <configuration>
+            <createChecksum>true</createChecksum>
+          </configuration>
+        </plugin>
+          
+        <plugin>
           <artifactId>maven-javadoc-plugin</artifactId>
           <version>2.9</version>
           <configuration>
@@ -557,59 +566,6 @@
     </pluginManagement>
   </build>
   
-  <profiles>
-    <profile>
-      <id>release</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-sources</id>
-                <goals>
-                  <goal>jar-no-fork</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          
-          <plugin>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-javadocs</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          
-          <plugin>
-            <artifactId>maven-install-plugin</artifactId>
-            <configuration>
-              <createChecksum>true</createChecksum>
-            </configuration>
-          </plugin>
-          
-          <plugin>
-            <artifactId>maven-gpg-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>sign-artifacts</id>
-                <phase>verify</phase>
-                <goals>
-                  <goal>sign</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-  
   <organization>
     <name>The Apache Software Foundation</name>
     <url>http://www.apache.org/</url>
@@ -622,4 +578,40 @@
       <distribution>repo</distribution>
     </license>
   </licenses>
+  
+  <mailingLists>
+    <mailingList>
+      <name>Apache JSPWiki-dev List</name>
+      <subscribe>jspwiki-dev-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>jspwiki-dev-unsubscribe@incubator.apache.org</unsubscribe>
+      <post>jspwiki-dev@incubator.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-dev/</archive>
+    </mailingList>
+    
+    <mailingList>
+      <name>Apache JSPWiki-user List</name>
+      <subscribe>jspwiki-user-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>jspwiki-user-unsubscribe@incubator.apache.org</unsubscribe>
+      <post>jspwiki-user@incubator.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-user/</archive>
+    </mailingList>
+    
+    <mailingList>
+      <name>Apache JSPWiki-commits List</name>
+      <subscribe>jspwiki-commits-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>jspwiki-commits-unsubscribe@incubator.apache.org</unsubscribe>
+      <post>jspwiki-commits@incubator.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-jspwiki-commits/</archive>
+    </mailingList>
+  </mailingLists>
+  
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/JSPWIKI</url>
+  </issueManagement>
+  
+  <ciManagement>
+    <system>Jenkins</system>
+    <url>https://builds.apache.org/job/JSPWiki</url>
+  </ciManagement>
 </project>
\ No newline at end of file