Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 72 - (show annotations) (download) (as text)
Thu Jun 25 08:10:49 2009 UTC (14 years, 11 months ago) by monamour
File MIME type: application/xml
File size: 6206 byte(s)
 r10343@monacintosh2:  monaka | 2009-06-25 17:10:06 +0900
 Add maven-gnustyle-build-plugin. Some fixes.

1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>jp.sourceforge.pizza-mvn</groupId>
6 <artifactId>pizza-mvn</artifactId>
7 <version>4-SNAPSHOT</version>
8 <packaging>pom</packaging>
9 <name>Mvn plugins hacked by PizzaFactory</name>
10 <url>http://pizza-mvn.sourceforge.jp</url>
11
12 <organization>
13 <name>PizzaFactory</name>
14 <url>https://www.pizzafactory.jp/</url>
15 </organization>
16
17 <mailingLists>
18 <mailingList>
19 <name>Developer ML</name>
20 <post>pizza-mvn-dev@lists.sourceforge.jp</post>
21 </mailingList>
22 </mailingLists>
23 <issueManagement>
24 <system>Sourceforge ticket</system>
25 <url>https://sourceforge.jp/projects/pizza-mvn/ticket/</url>
26 </issueManagement>
27 <scm>
28 <connection>scm:svn:https://svn.sourceforge.jp/svnroot/pizza-mvn/trunk/</connection>
29 <developerConnection>scm:svn:https://svn.sourceforge.jp/svnroot/pizza-mvn/trunk/</developerConnection>
30 </scm>
31
32 <dependencies>
33 <dependency>
34 <groupId>org.apache.maven</groupId>
35 <artifactId>maven-plugin-api</artifactId>
36 <version>2.0</version>
37 </dependency>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
41 <version>3.8.1</version>
42 <scope>test</scope>
43 </dependency>
44 </dependencies>
45
46 <distributionManagement>
47 <site>
48 <id>sourceforge.jp scp</id>
49 <url>scp://shell.sourceforge.jp/home/groups/p/pi/pizza-mvn/htdocs/</url>
50 </site>
51 <repository>
52 <id>sourceforge.jp scp</id>
53 <url>scp://shell.sourceforge.jp/home/groups/p/pi/pizza-mvn/htdocs/repository</url>
54 </repository>
55 </distributionManagement>
56
57 <repositories>
58 <repository>
59 <id>snapshots</id>
60 <name>Maven Central Development Repository</name>
61 <url>http://snapshots.repository.codehaus.org</url>
62 <releases>
63 <enabled>false</enabled>
64 </releases>
65 </repository>
66 <repository>
67 <id>codehaus.org</id>
68 <name>Codehaus Central Repository</name>
69 <url>http://repository.codehaus.org</url>
70 </repository>
71 </repositories>
72
73 <pluginRepositories>
74 <pluginRepository>
75 <id>snapshots</id>
76 <name>Maven Central Development Plugin Repository</name>
77 <url>http://snapshots.repository.codehaus.org</url>
78 <releases>
79 <enabled>false</enabled>
80 </releases>
81 </pluginRepository>
82 <pluginRepository>
83 <id>pizza-mvn</id>
84 <name>Maven Plugins Provided by PizzaFactory</name>
85 <url>http://pizza-mvn.sourceforge.jp/repository/</url>
86 </pluginRepository>
87 </pluginRepositories>
88
89 <modules>
90 <module>pde-maven-plugin</module>
91 <module>maven-gnustyle-build-plugin</module>
92 </modules>
93
94 <build>
95 <extensions>
96 <extension>
97 <groupId>org.apache.maven.wagon</groupId>
98 <artifactId>wagon-webdav</artifactId>
99 <version>1.0-beta-1</version>
100 </extension>
101 </extensions>
102
103 <pluginManagement>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-release-plugin</artifactId>
108 <configuration>
109 <tagBase>https://svn.sourceforge.jp/svnroot/pizza-mvn/tags</tagBase>
110 <username>${scm.username}</username>
111 <password>${scm.password}</password>
112 </configuration>
113 </plugin>
114 </plugins>
115 </pluginManagement>
116
117 </build>
118
119 <reporting>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-surefire-report-plugin</artifactId>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-checkstyle-plugin</artifactId>
128 <configuration>
129 <configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation>
130 <headerLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt</headerLocation>
131 </configuration>
132 </plugin>
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-pmd-plugin</artifactId>
136 </plugin>
137 <!--
138 <plugin>
139 org.codehaus.mojo:cobertura-maven-plugin > org.codehaus.mojo:taglist-maven-plugin > org.codehaus.mojo:cobertura-maven-plugin
140 <groupId>org.codehaus.mojo</groupId>
141 <artifactId>cobertura-maven-plugin</artifactId>
142 </plugin>
143 -->
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-jxr-plugin</artifactId>
147 </plugin>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-javadoc-plugin</artifactId>
151 <configuration>
152 <links>
153 <link>http://java.sun.com/j2ee/1.4/docs/api</link>
154 <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
155 <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
156 <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
157 <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
158 <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
159 <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
160 <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
161 <link>http://www.junit.org/junit/javadoc/</link>
162 <link>http://logging.apache.org/log4j/docs/api/</link>
163 <link>http://jakarta.apache.org/regexp/apidocs/</link>
164 <link>http://jakarta.apache.org/velocity/api/</link>
165 </links>
166 </configuration>
167 </plugin>
168 <plugin>
169 <groupId>org.codehaus.mojo</groupId>
170 <artifactId>taglist-maven-plugin</artifactId>
171 </plugin>
172 <plugin>
173 <groupId>org.apache.maven.plugins</groupId>
174 <artifactId>maven-plugin-plugin</artifactId>
175 </plugin>
176 </plugins>
177 </reporting>
178
179 </project>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26