Author: nick
Date: Thu Apr 15 15:44:10 2010
New Revision: 934461
URL: http://svn.apache.org/viewvc?rev=934461&view=rev
Log:
Fix a few tabs vs spaces issues, and make the Jar task include a few more
attributes that commons recommends
Modified:
incubator/chemistry/opencmis/trunk/pom.xml
Modified: incubator/chemistry/opencmis/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/pom.xml?rev=934461&r1=934460&r2=934461&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/pom.xml (original)
+++ incubator/chemistry/opencmis/trunk/pom.xml Thu Apr 15 15:44:10 2010
@@ -23,7 +23,7 @@
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
- <version>6</version>
+ <version>7</version>
</parent>
<!-- Project Information -->
@@ -46,8 +46,8 @@
</ciManagement>
<inceptionYear>2009</inceptionYear>
<description>
- OpenCMIS is an open source implementation of the OASIS CMIS specification.
- </description>
+ OpenCMIS is an open source implementation of the OASIS CMIS
specification.
+ </description>
<licenses>
<license>
@@ -75,8 +75,8 @@
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>
- http://mail-archives.apache.org/mod_mbox/incubator-chemistry-dev/
- </archive>
+
http://mail-archives.apache.org/mod_mbox/incubator-chemistry-dev/
+ </archive>
</mailingList>
<mailingList>
<name>Chemistry Source Control List</name>
@@ -84,8 +84,8 @@
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>
- http://mail-archives.apache.org/mod_mbox/incubator-chemistry-commits/
- </archive>
+
http://mail-archives.apache.org/mod_mbox/incubator-chemistry-commits/
+ </archive>
</mailingList>
</mailingLists>
@@ -164,15 +164,20 @@
<module>chemistry-opencmis-test/chemistry-opencmis-test-browser-app</module>
</modules>
+ <properties>
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <maven.compile.source>1.5</maven.compile.source>
+ <maven.compile.target>1.5</maven.compile.target>
+ </properties>
+
<build>
<plugins>
- <!-- Java 1.5 -->
<plugin>
<inherited>true</inherited>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <target>1.5</target>
- <source>1.5</source>
+ <target>${maven.compile.target}</target>
+ <source>${maven.compile.source}</source>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
@@ -226,6 +231,22 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>1.0</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+
<X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK>
+
<X-Compile-Target-JDK>${maven.compile.target}</X-Compile-Target-JDK>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
</plugins>
</build>
@@ -280,9 +301,6 @@
</plugin>
</plugins>
</reporting>
- <properties>
-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
<profiles>
<profile>