You are viewing a plain text version of this content. The canonical link for it is here.
Posted to droids-commits@incubator.apache.org by to...@apache.org on 2013/02/12 17:10:30 UTC

svn commit: r1445269 - /incubator/droids/branches/0.2.x-cleanup/pom.xml

Author: tobr
Date: Tue Feb 12 17:10:29 2013
New Revision: 1445269

URL: http://svn.apache.org/r1445269
Log:
cleaned up parent pom
removed unused or inherited properties and plugins

Modified:
    incubator/droids/branches/0.2.x-cleanup/pom.xml

Modified: incubator/droids/branches/0.2.x-cleanup/pom.xml
URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.2.x-cleanup/pom.xml?rev=1445269&r1=1445268&r2=1445269&view=diff
==============================================================================
--- incubator/droids/branches/0.2.x-cleanup/pom.xml (original)
+++ incubator/droids/branches/0.2.x-cleanup/pom.xml Tue Feb 12 17:10:29 2013
@@ -17,23 +17,26 @@
 -->
 <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">
-
     <modelVersion>4.0.0</modelVersion>
+    <packaging>pom</packaging>
+
     <parent>
         <groupId>org.apache</groupId>
         <artifactId>apache</artifactId>
-        <version>10</version>
+        <version>13</version>
     </parent>
+
     <groupId>org.apache.droids</groupId>
     <artifactId>droids</artifactId>
     <version>0.3.0-incubating-SNAPSHOT</version>
+
     <name>APACHE DROIDS</name>
-    <inceptionYear>2007</inceptionYear>
     <description>
         Apache Droids - an intelligent robot framework
     </description>
+    <inceptionYear>2007</inceptionYear>
+
     <url>http://incubator.apache.org/droids/</url>
-    <packaging>pom</packaging>
 
     <licenses>
         <license>
@@ -48,6 +51,7 @@
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/droids/trunk/</developerConnection>
         <url>http://svn.apache.org/repos/asf/incubator/droids/trunk/</url>
     </scm>
+
     <issueManagement>
         <system>jira</system>
         <url>http://issues.apache.org/jira/browse/DROIDS</url>
@@ -179,13 +183,10 @@
     <properties>
         <maven.compile.source>1.6</maven.compile.source>
         <maven.compile.target>1.6</maven.compile.target>
-        <maven.compile.optimize>true</maven.compile.optimize>
-        <maven.compile.deprecation>true</maven.compile.deprecation>
-        <commons-io.version>2.1</commons-io.version>
-        <httpclient.version>4.2</httpclient.version>
-        <nekohtml.version>1.9.15</nekohtml.version>
+
         <slf4j.version>1.6.4</slf4j.version>
         <logback.version>1.0.7</logback.version>
+
         <junit.version>4.10</junit.version>
     </properties>
 
@@ -197,8 +198,6 @@
                 <configuration>
                     <source>${maven.compile.source}</source>
                     <target>${maven.compile.target}</target>
-                    <optimize>${maven.compile.optimize}</optimize>
-                    <showDeprecations>${maven.compile.deprecation}</showDeprecations>
                 </configuration>
             </plugin>
             <plugin>
@@ -210,24 +209,12 @@
                 <version>2.8</version>
             </plugin>
             <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <inherited>true</inherited>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>surefire-report-maven-plugin</artifactId>
-                <inherited>true</inherited>
-                <version>2.0-beta-1</version>
-            </plugin>
-
-            <plugin>
                 <!-- Add SVN Revision To A JAR Manifest
                    - http://maven.apache.org/plugin-developers/cookbook/add-svn-revision-to-manifest.html
                   -->
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>buildnumber-maven-plugin</artifactId>
-                <version>1.0</version>
+                <version>1.1</version>
                 <executions>
                     <execution>
                         <phase>validate</phase>
@@ -266,37 +253,6 @@
         </plugins>
     </build>
 
-    <!-- apache gpg profile -->
-    <profiles>
-        <profile>
-            <id>release-sign-artifacts</id>
-            <activation>
-                <property>
-                    <name>performRelease</name>
-                    <value>true</value>
-                </property>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-gpg-plugin</artifactId>
-                        <version>1.4</version>
-                        <executions>
-                            <execution>
-                                <id>sign-artifacts</id>
-                                <phase>verify</phase>
-                                <goals>
-                                    <goal>sign</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
     <reporting>
         <plugins>
             <plugin>
@@ -340,16 +296,6 @@
         </repository>
     </repositories>
 
-    <!-- DROIDS-70 / INFRA-2368 -->
-    <!--  <distributionManagement>
-          <snapshotRepository>
-            <id>org.apache.people</id>
-            <name>Snapshot Repository</name>
-            <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
-          </snapshotRepository>
-      </distributionManagement>-->
-
-
     <modules>
         <module>droids-core</module>
         <module>droids-norobots</module>