OSDN Git Service

change internal process method, which introducing ExtractionResultSet
[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.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>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.sourceforge.talisman</groupId>
57       <artifactId>xmlcli</artifactId>
58       <version>1.2.1</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>edu.stanford.ejalbert</groupId>
69       <artifactId>BrowserLauncher2</artifactId>
70       <version>1.3</version>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>junit</groupId>
75       <artifactId>junit</artifactId>
76       <version>4.1</version>
77       <scope>test</scope>
78     </dependency>
79   </dependencies>
80
81   <licenses>
82     <license>
83       <name>Apache License 2.0</name>
84       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
85       <distribution>repo</distribution>
86     </license>
87   </licenses>
88
89   <distributionManagement>
90     <repository>
91       <id>shell.sourceforge.jp</id>
92       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs/maven2</url>
93     </repository>
94     <site>
95       <id>shell.sourceforge.jp</id>
96       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs</url>
97     </site>
98   </distributionManagement>
99
100   <scm>
101     <connection>scm:svn:http://svn.sourceforge.jp/svnroot/stigmata/trunk</connection>
102     <developerConnection>scm:svn:svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/trunk/</developerConnection>
103     <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=stigmata</url>
104   </scm>
105
106   <build>
107     <plugins>
108       <plugin>
109         <groupId>org.apache.maven.plugins</groupId>
110         <artifactId>maven-compiler-plugin</artifactId>
111         <configuration>
112           <source>1.5</source>
113           <target>1.5</target>
114           <encoding>shift_jis</encoding>
115         </configuration>
116       </plugin>
117
118       <plugin>
119         <groupId>org.apache.maven.plugins</groupId>
120         <artifactId>maven-jar-plugin</artifactId>
121         <configuration>
122           <archive>
123             <manifest>
124               <mainClass>jp.naist.se.stigmata.Main</mainClass>
125               <addClasspath>true</addClasspath>
126               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
127             </manifest>
128           </archive>
129         </configuration>
130       </plugin>
131
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-dependency-plugin</artifactId>
135         <executions>
136           <execution>
137             <id>copy-dependencies</id>
138             <phase>package</phase>
139             <goals>
140               <goal>copy-dependencies</goal>
141             </goals>
142             <configuration>
143               <outputDirectory>${project.build.directory}</outputDirectory>
144               <includeScope>runtime</includeScope>
145             </configuration>
146           </execution>
147         </executions>
148       </plugin>
149
150       <plugin>
151         <groupId>org.codehaus.mojo</groupId>
152         <artifactId>native2ascii-maven-plugin</artifactId>
153         <executions>
154           <execution>
155             <goals>
156               <goal>native2ascii</goal>
157             </goals>
158             <phase>process-resources</phase>
159             <configuration>
160               <dest>${project.build.directory}/classes</dest>
161               <src>${basedir}/src/main/resources</src>
162               <includes>**/*.source</includes>
163               <ext>.properties</ext>
164               <encoding>shift_jis</encoding>
165             </configuration>
166           </execution>
167         </executions>
168       </plugin>
169
170       <!-- for JUnit4 -->
171       <plugin>
172         <artifactId>maven-surefire-plugin</artifactId>
173         <version>2.3</version>
174       </plugin>
175
176       <plugin>
177         <groupId>org.apache.maven.plugins</groupId>
178         <artifactId>maven-site-plugin</artifactId>
179         <configuration>
180           <inputEncoding>utf-8</inputEncoding>
181           <outputEncoding>utf-8</outputEncoding>
182           <locales>en</locales>
183         </configuration>
184       </plugin>
185
186       <!-- for assembly plugin -->
187       <plugin>
188         <artifactId>maven-assembly-plugin</artifactId>
189         <configuration>
190           <descriptors>
191             <descriptor>src/main/assembly/executable.xml</descriptor>
192             <descriptor>src/main/assembly/binary.xml</descriptor>
193             <descriptor>src/main/assembly/source.xml</descriptor>
194           </descriptors>
195         </configuration>
196       </plugin>
197
198     </plugins>
199
200   </build>
201
202   <reporting>
203     <plugins>
204       <!-- looking for potential problems -->
205       <plugin>
206         <groupId>org.apache.maven.plugins</groupId>
207         <artifactId>maven-javadoc-plugin</artifactId>
208         <configuration>
209           <locale>en</locale>
210         </configuration>
211       </plugin>
212     </plugins>
213   </reporting>
214 </project>