OSDN Git Service

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