From: Vance K. <va...@us...> - 2006-05-29 01:49:33
|
User: vancek Date: 06/05/28 18:49:31 Modified: andromda-ejb3 pom.xml Log: added issue management specific to the EJB JIRA project added extra reporting plugins; maven-project-info-reports maven-javadoc-plugin maven-surefire-report-plugin maven-jxr-plugin maven-pmd-plugin maven-checkstyle-plugin maven-changes-plugin maven-changelog-plugin Revision Changes Path 1.5 +74 -8 cartridges/andromda-ejb3/pom.xml Index: pom.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/pom.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- pom.xml 16 May 2006 08:12:54 -0000 1.4 +++ pom.xml 29 May 2006 01:49:31 -0000 1.5 @@ -11,6 +11,11 @@ <packaging>andromda-cartridge</packaging> <name>AndroMDA EJB3 Cartridge</name> <description>Produces EJB 3.0 persistence layer from a model.</description> + <inceptionYear>2006</inceptionYear> + <issueManagement> + <system>jira</system> + <url>http://galaxy.andromda.org/jira/BrowseProject.jspa?id=10011</url> + </issueManagement> <developers> <developer> <id>vancek</id> @@ -58,10 +63,6 @@ </dependencies> </plugin> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - </plugin> - <plugin> <groupId>org.andromda.maven.plugins</groupId> <artifactId>andromda-site-plugin</artifactId> <version>3.2-SNAPSHOT</version> @@ -80,17 +81,82 @@ </execution> </executions> </plugin> + </plugins> + </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <locales>en</locales> - <templateDirectory>file:${user.home}/.m2/repository/org/andromda/maven/plugins/andromda-site-plugin/3.2-SNAPSHOT/andromda-site-plugin-3.2-SNAPSHOT.jar</templateDirectory> - <template>META-INF/template/andromda-site.vm</template> + <outputEncoding>UTF-8</outputEncoding> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <minmemory>128m</minmemory> + <maxmemory>512</maxmemory> + <sourcepath>src/main/java;target/src</sourcepath> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>1.5</targetJdk> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <reportSets> + <reportSet> + <reports> + <report>changes-report</report> + <report>jira-report</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changelog-plugin</artifactId> + <reportSets> + <reportSet> + <id>All Reports</id> + <configuration> + <type>range</type> + <range>90</range> + </configuration> + <reports> + <report>changelog</report> + <report>file-activity</report> + <report>dev-activity</report> + </reports> + </reportSet> + </reportSets> + </plugin> </plugins> - </build> + </reporting> <properties> <maven.test.skip>true</maven.test.skip> <model.uri>jar:file:${pom.basedir}/src/main/uml/EJB3MetafacadeModel.xml.zip!/EJB3MetafacadeModel.xml</model.uri> |