OSDN Git Service

show extracted birthmark from extracted histories
[stigmata/stigmata-core.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.2.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>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>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>stax</groupId>
51       <artifactId>stax</artifactId>
52       <version>1.2.0</version>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>commons-dbutils</groupId>
57       <artifactId>commons-dbutils</artifactId>
58       <version>1.1</version>
59       <scope>compile</scope>
60     </dependency>
61     <dependency>
62       <groupId>commons-beanutils</groupId>
63       <artifactId>commons-beanutils</artifactId>
64       <version>1.7.0</version>
65       <scope>compile</scope>
66     </dependency>
67     <dependency>
68       <groupId>jp.sourceforge.talisman</groupId>
69       <artifactId>xmlcli</artifactId>
70       <version>1.2.1</version>
71       <scope>compile</scope>
72     </dependency>
73     <dependency>
74       <groupId>Jama</groupId>
75       <artifactId>Jama</artifactId>
76       <version>1.0.2</version>
77       <scope>compile</scope>
78     </dependency>
79     <dependency>
80       <groupId>edu.stanford.ejalbert</groupId>
81       <artifactId>BrowserLauncher2</artifactId>
82       <version>1.3</version>
83       <scope>runtime</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.5</source>
125           <target>1.5</target>
126           <encoding>shift_jis</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.naist.se.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>utf-8</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/executable.xml</descriptor>
204             <descriptor>src/main/assembly/binary.xml</descriptor>
205             <descriptor>src/main/assembly/source.xml</descriptor>
206           </descriptors>
207         </configuration>
208       </plugin>
209
210       <plugin>
211         <artifactId>maven-release-plugin</artifactId>
212         <configuration>
213           <tagBase>svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/tags</tagBase>
214         </configuration>
215       </plugin>
216     </plugins>
217
218   </build>
219
220   <reporting>
221     <plugins>
222       <!-- looking for potential problems -->
223       <plugin>
224         <groupId>org.apache.maven.plugins</groupId>
225         <artifactId>maven-javadoc-plugin</artifactId>
226         <configuration>
227           <locale>en</locale>
228         </configuration>
229       </plugin>
230     </plugins>
231   </reporting>
232 </project>