OSDN Git Service

dbd2ad4390d1903af87de90407f8561958b01652
[stigmata/stigmata-plugins.git] / pom.xml
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.stigmata</groupId>
6   <artifactId>plugins</artifactId>
7   <packaging>pom</packaging>
8   <version>1.0</version>
9   <name>Stigmata Plugin Project</name>
10   <description>Plugins of stigmata</description>
11   <url>http://stigmata.sourceforge.jp/plugins/</url>
12   <inceptionYear>2008</inceptionYear>
13
14   <modules>
15     <module>wsp</module>
16     <module>sot</module>
17     <module>cflib</module>
18 <!--
19     <module>sapit</module>
20     <module>cfs</module>
21 -->
22   </modules>
23
24   <issueManagement>
25     <system>sourceforge</system>
26     <url>http://sourceforge.jp/tracker/?group_id=3014</url>
27   </issueManagement>
28
29   <developers>
30     <developer>
31       <id>tama3</id>
32       <name>Haruaki TAMADA</name>
33       <email>tama3[ at ]users.sourceforge.jp</email>
34       <timezone>-9</timezone>
35     </developer>
36   </developers>
37
38   <organization>
39     <name>Stigmata Plugins Project</name>
40     <url>http://stigmata.sourceforge.jp/plugins/</url>
41   </organization>
42
43   <licenses>
44     <license>
45       <name>Apache License 2.0</name>
46       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
47       <distribution>repo</distribution>
48     </license>
49   </licenses>
50
51   <repositories>
52     <repository>
53       <id>stigmata.sourceforge.jp</id>
54       <name>sourceforge repository for Maven2</name>
55       <url>http://stigmata.sourceforge.jp/maven2</url>
56     </repository>
57   </repositories>
58
59   <dependencies>
60     <dependency>
61       <groupId>junit</groupId>
62       <artifactId>junit</artifactId>
63       <version>4.3</version>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68   <distributionManagement>
69     <repository>
70       <id>shell.sourceforge.jp</id>
71       <name>shell sourceforge Maven2 Repository</name>
72       <url>scp://shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs/maven2</url>
73     </repository>
74     <site>
75       <id>shell.sourceforge.jp</id>
76       <name>shell sourceforge Maven2 Repository</name>
77       <url>scp://shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs/plugins/</url>
78     </site>
79   </distributionManagement>
80
81   <scm>
82     <connection>scm:svn:http://svn.sourceforge.jp/svnroot/stigmata/plugins/trunk/</connection>
83     <developerConnection>scm:svn:svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/plugins/trunk</developerConnection>
84     <url>http://svn.sourceforge.jp/svnroot/stigmata/plugins/trunk/</url>
85   </scm>
86
87   <build>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-compiler-plugin</artifactId>
92         <configuration>
93           <source>1.6</source>
94           <target>1.6</target>
95           <encoding>utf-8</encoding>
96         </configuration>
97       </plugin>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-jar-plugin</artifactId>
101         <configuration>
102           <archive>
103             <manifest>
104               <addClasspath>true</addClasspath>
105             </manifest>
106           </archive>
107         </configuration>
108       </plugin>
109
110       <plugin>
111         <artifactId>maven-site-plugin</artifactId>
112         <configuration>
113           <inputEncoding>utf-8</inputEncoding>
114           <outputEncoding>utf-8</outputEncoding>
115           <locales>en</locales>
116         </configuration>
117       </plugin>
118
119       <!-- for JUnit4 -->
120       <plugin>
121         <artifactId>maven-surefire-plugin</artifactId>
122         <version>2.3</version>
123       </plugin>
124
125       <plugin>
126         <groupId>org.apache.maven.plugins</groupId>
127         <artifactId>maven-javadoc-plugin</artifactId>
128         <configuration>
129           <charset>utf-8</charset>
130           <docencoding>utf-8</docencoding>
131           <locale>en</locale>
132         </configuration>
133       </plugin>
134     </plugins>
135   </build>
136
137   <reporting>
138     <plugins>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-project-info-reports-plugin</artifactId>
142       </plugin>
143       <plugin>
144         <groupId>org.apache.maven.plugins</groupId>
145         <artifactId>maven-javadoc-plugin</artifactId>
146         <configuration>
147           <locale>en</locale>
148         </configuration>
149       </plugin>
150       <plugin>
151         <groupId>org.codehaus.mojo</groupId>
152         <artifactId>cobertura-maven-plugin</artifactId>
153       </plugin>
154       <plugin>
155         <artifactId>maven-pmd-plugin</artifactId>
156         <configuration>
157           <linkXref>true</linkXref>
158           <sourceEncoding>utf-8</sourceEncoding>
159           <targetJdk>1.6</targetJdk>
160         </configuration>
161       </plugin>
162       <plugin>
163         <groupId>net.sf</groupId>
164         <artifactId>stat-scm</artifactId>
165         <configuration>
166           <tags>csvio-1.0.1</tags>
167           <tagsDir>/releases/</tagsDir>
168         </configuration>
169       </plugin>
170       <plugin>
171         <groupId>org.apache.maven.plugins</groupId>
172         <artifactId>maven-jxr-plugin</artifactId>
173       </plugin>
174       <plugin>
175         <groupId>org.apache.maven.plugins</groupId>
176         <artifactId>maven-changes-plugin</artifactId>
177         <reportSets>
178           <reportSet>
179             <reports>
180               <report>changes-report</report>
181             </reports>
182           </reportSet>
183         </reportSets>
184       </plugin>
185       <plugin>
186         <groupId>org.codehaus.mojo</groupId>
187         <artifactId>findbugs-maven-plugin</artifactId>
188         <configuration>
189           <xmlOutput>false</xmlOutput>
190           <threshold>Normal</threshold>
191           <effort>Default</effort>
192         </configuration>
193       </plugin>
194     </plugins>
195   </reporting>
196 </project>