[Clirr-devel] CVS: clirr/core pom.xml,1.7,1.8
Status: Alpha
Brought to you by:
lkuehne
From: Lars Küh. <lk...@us...> - 2013-05-11 20:26:38
|
Update of /cvsroot/clirr/clirr/core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24673 Modified Files: pom.xml Log Message: added license info and checkstyle report Index: pom.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/pom.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- pom.xml 18 Apr 2013 22:23:18 -0000 1.7 +++ pom.xml 11 May 2013 20:26:35 -0000 1.8 @@ -11,6 +11,14 @@ <relativePath>../pom.xml</relativePath> </parent> + <licenses> + <license> + <name>GNU Lesser General Public License (LGPL)</name> + <url>http://www.gnu.org/licenses/lgpl.html</url> + <distribution>repo</distribution> + </license> + </licenses> + <modelVersion>4.0.0</modelVersion> <groupId>net.sf.clirr</groupId> <artifactId>clirr-core</artifactId> @@ -227,6 +235,17 @@ <artifactId>maven-surefire-report-plugin</artifactId> <version>2.14.1</version> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>2.10</version> + <configuration> + <configLocation>../conf/clirr_checks.xml</configLocation> + <headerLocation>../conf/javaheader.txt</headerLocation> + </configuration> + </plugin> + <!-- maven-jdepend-plugin maven-license-plugin |