OSDN Git Service

refactoring: removed code clone
[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.naist.se</groupId>
6   <artifactId>stigmata</artifactId>
7   <version>1.1.0</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>maven.cafebabe.jp</id>
16       <name>The cafebabe Maven2 Repository</name>
17       <url>http://cafebabe.jp/repository/maven2</url>
18     </repository>
19     <repository>
20       <id>stigmata.sourceforge.jp</id>
21       <name>Stigmata Maven2 Repository in sourceforge.jp</name>
22       <url>http://stigmata.sourceforge.jp/maven2</url>
23     </repository>
24   </repositories>
25
26   <developers>
27     <developer>
28       <id>tama</id>
29       <name>Haruaki TAMADA</name>
30       <email>harua-t[ at ]is.naist.jp</email>
31       <organization>NAIST, Software Engineering Lab.</organization>
32       <organizationUrl>http://se.naist.jp/</organizationUrl>
33       <timezone>-9</timezone>
34     </developer>
35   </developers>
36
37   <organization>
38     <name>Software Engineering Lab., NAIST</name>
39     <url>http://se.naist.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-beanutils</groupId>
51       <artifactId>commons-beanutils</artifactId>
52       <version>1.7.0</version>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>jp.cafebabe.commons</groupId>
57       <artifactId>xmlcli</artifactId>
58       <version>1.2</version>
59       <scope>compile</scope>
60     </dependency>
61     <dependency>
62       <groupId>Jama</groupId>
63       <artifactId>Jama</artifactId>
64       <version>1.0.2</version>
65       <scope>compile</scope>
66     </dependency>
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <version>4.1</version>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74
75   <licenses>
76     <license>
77       <name>Apache License 2.0</name>
78       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
79       <distribution>repo</distribution>
80     </license>
81   </licenses>
82
83   <distributionManagement>
84     <repository>
85       <id>shell.sourceforge.jp</id>
86       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs/maven2</url>
87     </repository>
88     <site>
89       <id>shell.sourceforge.jp</id>
90       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs</url>
91     </site>
92   </distributionManagement>
93
94   <scm>
95     <connection>scm:svn:http://svn.sourceforge.jp/svnroot/stigmata/trunk</connection>
96     <developerConnection>scm:svn:svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/trunk/</developerConnection>
97     <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=stigmata</url>
98   </scm>
99
100   <build>
101     <plugins>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-compiler-plugin</artifactId>
105         <configuration>
106           <source>1.5</source>
107           <target>1.5</target>
108           <encoding>shift_jis</encoding>
109         </configuration>
110       </plugin>
111
112       <plugin>
113         <groupId>org.apache.maven.plugins</groupId>
114         <artifactId>maven-jar-plugin</artifactId>
115         <configuration>
116           <archive>
117             <manifest>
118               <mainClass>jp.naist.se.stigmata.Main</mainClass>
119               <addClasspath>true</addClasspath>
120               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
121             </manifest>
122           </archive>
123         </configuration>
124       </plugin>
125
126       <plugin>
127         <groupId>org.codehaus.mojo</groupId>
128         <artifactId>dependency-maven-plugin</artifactId>
129         <executions>
130           <execution>
131             <id>copy-dependencies</id>
132             <phase>package</phase>
133             <goals>
134               <goal>copy-dependencies</goal>
135             </goals>
136             <configuration>
137               <outputDirectory>${project.build.directory}</outputDirectory>
138             </configuration>
139           </execution>
140         </executions>
141       </plugin>
142
143 <!--
144 This task has a bug...
145 The bug is that resource file is copied to target/classes directory, too.
146 -->
147 <!--
148       <plugin>
149         <groupId>org.codehaus.mojo</groupId>
150         <artifactId>native2ascii-maven-plugin</artifactId>
151         <executions>
152           <execution>
153             <goals>
154               <goal>native2ascii</goal>
155             </goals>
156             <configuration>
157               <ext>.properties</ext>
158               <includes>*.source</includes>
159               <encoding>shift_jis</encoding>
160               <src>${basedir}/src/main/resources/resources/</src>
161               <dest>${project.build.directory}/classes/resources</dest>
162             </configuration>
163           </execution>
164         </executions>
165       </plugin>
166 -->
167       <!-- for JUnit4 -->
168       <plugin>
169         <artifactId>maven-surefire-plugin</artifactId>
170         <version>2.3</version>
171       </plugin>
172       <plugin>
173         <groupId>org.apache.maven.plugins</groupId>
174         <artifactId>maven-site-plugin</artifactId>
175         <configuration>
176           <inputEncoding>utf-8</inputEncoding>
177           <outputEncoding>utf-8</outputEncoding>
178           <locales>en</locales>
179         </configuration>
180       </plugin>
181     </plugins>
182   </build>
183
184   <reporting>
185     <plugins>
186       <!-- looking for potential problems -->
187       <plugin>
188         <groupId>org.apache.maven.plugins</groupId>
189         <artifactId>maven-pmd-plugin</artifactId>
190       </plugin>
191       <plugin>
192         <groupId>org.apache.maven.plugins</groupId>
193         <artifactId>maven-javadoc-plugin</artifactId>
194         <configuration>
195           <locale>en</locale>
196         </configuration>
197       </plugin>
198     </plugins>
199   </reporting>
200 </project>