OSDN Git Service

expert menu label is renamed as experimental menu
[stigmata/stigmata.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project>
4   <modelVersion>4.0.0</modelVersion>
5   <groupId>jp.sourceforge</groupId>
6   <artifactId>stigmata</artifactId>
7   <version>2.0.0-SNAPSHOT</version>
8   <name>stigmata</name>
9   <description>Java birthmark toolkit</description>
10   <url>http://stigmata.sourceforge.jp/</url>
11   <inceptionYear>2006</inceptionYear>
12
13   <repositories>
14     <repository>
15       <id>stigmata.sourceforge.jp</id>
16       <name>Stigmata Maven2 Repository in sourceforge.jp</name>
17       <url>http://stigmata.sourceforge.jp/maven2</url>
18     </repository>
19     <repository>
20       <id>talisman.sourceforge.jp</id>
21       <name>Talisman Maven2 Repository in sourceforge.jp</name>
22       <url>http://talisman.sourceforge.jp/maven2</url>
23     </repository>
24   </repositories>
25
26   <developers>
27     <developer>
28       <id>tama</id>
29       <name>Haruaki TAMADA</name>
30       <email>tama3[ at ]users.sourceforge.jp</email>
31       <organization>sourceforge.jp</organization>
32       <organizationUrl>http://sourceforge.jp/</organizationUrl>
33       <timezone>-9</timezone>
34     </developer>
35   </developers>
36
37   <organization>
38     <name>Stigmata Project, Sourceforge.jp, Japan</name>
39     <url>http://stigmata.sourceforge.jp/</url>
40   </organization>
41
42   <dependencies>
43     <dependency>
44       <groupId>asm</groupId>
45       <artifactId>asm-all</artifactId>
46       <version>2.2.3</version>
47       <scope>compile</scope>
48     </dependency>
49     <dependency>
50       <groupId>commons-dbutils</groupId>
51       <artifactId>commons-dbutils</artifactId>
52       <version>1.1</version>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>commons-beanutils</groupId>
57       <artifactId>commons-beanutils</artifactId>
58       <version>1.7.0</version>
59       <scope>compile</scope>
60     </dependency>
61     <dependency>
62       <groupId>jp.sourceforge.talisman</groupId>
63       <artifactId>mds</artifactId>
64       <version>1.0.1-SNAPSHOT</version>
65       <scope>compile</scope>
66     </dependency>
67     <dependency>
68       <groupId>jp.sourceforge.talisman</groupId>
69       <artifactId>xmlcli</artifactId>
70       <version>1.2.2</version>
71       <scope>compile</scope>
72     </dependency>
73     <dependency>
74       <groupId>jp.sourceforge.talisman</groupId>
75       <artifactId>i18n</artifactId>
76       <version>1.0.1-SNAPSHOT</version>
77       <scope>compile</scope>
78     </dependency>
79     <dependency>
80       <groupId>jp.sourceforge.stigmata</groupId>
81       <artifactId>digger</artifactId>
82       <version>1.0.0-SNAPSHOT</version>
83       <scope>compile</scope>
84     </dependency>
85     <dependency>
86       <groupId>junit</groupId>
87       <artifactId>junit</artifactId>
88       <version>4.1</version>
89       <scope>test</scope>
90     </dependency>
91   </dependencies>
92
93   <licenses>
94     <license>
95       <name>Apache License 2.0</name>
96       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
97       <distribution>repo</distribution>
98     </license>
99   </licenses>
100
101   <distributionManagement>
102     <repository>
103       <id>shell.sourceforge.jp</id>
104       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs/maven2</url>
105     </repository>
106     <site>
107       <id>shell.sourceforge.jp</id>
108       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs</url>
109     </site>
110   </distributionManagement>
111
112   <scm>
113     <connection>scm:svn:http://svn.sourceforge.jp/svnroot/stigmata/trunk</connection>
114     <developerConnection>scm:svn:svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/trunk/</developerConnection>
115     <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=stigmata</url>
116   </scm>
117
118   <build>
119     <plugins>
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-compiler-plugin</artifactId>
123         <configuration>
124           <source>1.6</source>
125           <target>1.6</target>
126           <encoding>utf-8</encoding>
127         </configuration>
128       </plugin>
129
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-jar-plugin</artifactId>
133         <configuration>
134           <archive>
135             <manifest>
136               <mainClass>jp.sourceforge.stigmata.Main</mainClass>
137               <addClasspath>true</addClasspath>
138               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
139             </manifest>
140           </archive>
141         </configuration>
142       </plugin>
143
144       <plugin>
145         <groupId>org.apache.maven.plugins</groupId>
146         <artifactId>maven-dependency-plugin</artifactId>
147         <executions>
148           <execution>
149             <id>copy-dependencies</id>
150             <phase>compile</phase>
151             <goals>
152               <goal>copy-dependencies</goal>
153             </goals>
154             <configuration>
155               <outputDirectory>${project.build.directory}</outputDirectory>
156               <includeScope>runtime</includeScope>
157             </configuration>
158           </execution>
159         </executions>
160       </plugin>
161
162       <plugin>
163         <groupId>org.codehaus.mojo</groupId>
164         <artifactId>native2ascii-maven-plugin</artifactId>
165         <executions>
166           <execution>
167             <goals>
168               <goal>native2ascii</goal>
169             </goals>
170             <phase>process-resources</phase>
171             <configuration>
172               <dest>${project.build.directory}/classes</dest>
173               <src>${basedir}/src/main/resources</src>
174               <includes>**/*.source</includes>
175               <ext>.properties</ext>
176               <encoding>shift_jis</encoding>
177             </configuration>
178           </execution>
179         </executions>
180       </plugin>
181
182       <!-- for JUnit4 -->
183       <plugin>
184         <artifactId>maven-surefire-plugin</artifactId>
185         <version>2.3</version>
186       </plugin>
187
188       <plugin>
189         <groupId>org.apache.maven.plugins</groupId>
190         <artifactId>maven-site-plugin</artifactId>
191         <configuration>
192           <inputEncoding>euc-jp</inputEncoding>
193           <outputEncoding>utf-8</outputEncoding>
194           <locales>en</locales>
195         </configuration>
196       </plugin>
197
198       <!-- for assembly plugin -->
199       <plugin>
200         <artifactId>maven-assembly-plugin</artifactId>
201         <configuration>
202           <descriptors>
203             <descriptor>src/main/assembly/macosx.xml</descriptor>
204             <descriptor>src/main/assembly/executable.xml</descriptor>
205             <descriptor>src/main/assembly/binary.xml</descriptor>
206             <descriptor>src/main/assembly/source.xml</descriptor>
207           </descriptors>
208         </configuration>
209       </plugin>
210
211       <plugin>
212         <artifactId>maven-release-plugin</artifactId>
213         <configuration>
214           <tagBase>svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/tags</tagBase>
215         </configuration>
216       </plugin>
217     </plugins>
218   </build>
219
220   <reporting>
221     <plugins>
222       <plugin>
223         <groupId>org.apache.maven.plugins</groupId>
224         <artifactId>maven-project-info-reports-plugin</artifactId>
225       </plugin>
226       <plugin>
227         <groupId>org.apache.maven.plugins</groupId>
228         <artifactId>maven-javadoc-plugin</artifactId>
229         <configuration>
230           <locale>en</locale>
231         </configuration>
232       </plugin>
233       <plugin>
234         <groupId>org.codehaus.mojo</groupId>
235         <artifactId>cobertura-maven-plugin</artifactId>
236       </plugin>
237       <plugin>
238         <artifactId>maven-pmd-plugin</artifactId>
239         <configuration>
240           <linkXref>true</linkXref>
241           <sourceEncoding>utf-8</sourceEncoding>
242           <targetJdk>1.6</targetJdk>
243         </configuration>
244       </plugin>
245       <plugin>
246         <groupId>org.apache.maven.plugins</groupId>
247         <artifactId>maven-jxr-plugin</artifactId>
248       </plugin>
249       <plugin>
250         <groupId>org.apache.maven.plugins</groupId>
251         <artifactId>maven-changes-plugin</artifactId>
252         <reportSets>
253           <reportSet>
254             <reports>
255               <report>changes-report</report>
256             </reports>
257           </reportSet>
258         </reportSets>
259       </plugin>
260       <plugin>
261         <groupId>org.codehaus.mojo</groupId>
262         <artifactId>findbugs-maven-plugin</artifactId>
263         <configuration>
264           <xmlOutput>false</xmlOutput>
265           <threshold>Normal</threshold>
266           <effort>Default</effort>
267         </configuration>
268       </plugin>
269
270       <plugin>
271         <groupId>org.apache.maven.plugins</groupId>
272         <artifactId>maven-javadoc-plugin</artifactId>
273         <configuration>
274           <locale>en</locale>
275         </configuration>
276       </plugin>
277     </plugins>
278   </reporting>
279 </project>