From: <id...@us...> - 2009-03-18 08:54:17
|
Revision: 95 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=95&view=rev Author: idueppe Date: 2009-03-18 08:54:12 +0000 (Wed, 18 Mar 2009) Log Message: ----------- Add license and reports to the pom and fixed the use of different version of toplink.essential between sc-cdmm and sc-idmapper Modified Paths: -------------- trunk/sandbox/cse-ip/pom.xml trunk/sandbox/cse-ip/sc-cdmm/pom.xml Modified: trunk/sandbox/cse-ip/pom.xml =================================================================== --- trunk/sandbox/cse-ip/pom.xml 2009-03-18 07:40:21 UTC (rev 94) +++ trunk/sandbox/cse-ip/pom.xml 2009-03-18 08:54:12 UTC (rev 95) @@ -37,30 +37,38 @@ </developer> </developers> + <licenses> + <license> + <name>GNU General Public License</name> + <url>http://www.gnu.org/copyleft/gpl.html</url> + </license> + </licenses> + <scm> <connection>scm:svn:https://cse-ip.svn.sourceforge.net/svnroot/cse-ip/trunk/cse-ip</connection> <url>https://cse-ip.svn.sourceforge.net/svnroot/cse-ip/trunk/cse-ip</url> </scm> + <organization> <name>CampusSource</name> <url>http://cse.campussource.de</url> </organization> <modules> - <module>framework</module> + <module>framework</module> <module>ica-his-lsf</module> <module>sc-idmapper</module> <module>sc-cdmm</module> <module>cse-ip-application</module> </modules> - + <repositories> <repository> <id>java-net</id> <name>Java.Net</name> <layout>legacy</layout> <url>https://maven-repository.dev.java.net/nonav/repository</url> - </repository> + </repository> </repositories> <build> @@ -123,6 +131,45 @@ </plugins> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <linkXref>true</linkXref> + <targetJdk>1.6</targetJdk> + </configuration> + </plugin> + <plugin> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>taglist-maven-plugin</artifactId> + <configuration> + <tags> + <tag>TODO</tag> + <tag>FIXME</tag> + </tags> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <dependencyManagement> <dependencies> <dependency> Modified: trunk/sandbox/cse-ip/sc-cdmm/pom.xml =================================================================== --- trunk/sandbox/cse-ip/sc-cdmm/pom.xml 2009-03-18 07:40:21 UTC (rev 94) +++ trunk/sandbox/cse-ip/sc-cdmm/pom.xml 2009-03-18 08:54:12 UTC (rev 95) @@ -73,7 +73,7 @@ <dependency> <groupId>toplink.essentials</groupId> <artifactId>toplink-essentials</artifactId> - <version>2.1-60e</version> + <version>${toplink.version}</version> <scope>test</scope> </dependency> <dependency> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |