OSDN Git Service

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