OSDN Git Service

initial version
[stigmata/digger.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6   <groupId>jp.sourceforge.stigmata</groupId>
7   <artifactId>digger</artifactId>
8   <packaging>jar</packaging>
9   <version>1.0.0-SNAPSHOT</version>
10   <name>digger</name>
11   <description>Dig up class files</description>
12   <url>http://stigmata.sourceforge.jp/digger/</url>
13   <inceptionYear>2008</inceptionYear>
14
15   <repositories>
16     <repository>
17       <id>stigmata.sourceforge.jp</id>
18       <name>Stigmata Maven2 Repository in sourceforge.jp</name>
19       <url>http://stigmata.sourceforge.jp/maven2</url>
20     </repository>
21     <repository>
22       <id>talisman.sourceforge.jp</id>
23       <name>Talisman Maven2 Repository in sourceforge.jp</name>
24       <url>http://talisman.sourceforge.jp/maven2</url>
25     </repository>
26   </repositories>
27
28   <developers>
29     <developer>
30       <id>tama</id>
31       <name>Haruaki TAMADA</name>
32       <email>tama3[ at ]users.sourceforge.jp</email>
33       <organization>sourceforge.jp</organization>
34       <organizationUrl>http://sourceforge.jp/</organizationUrl>
35       <timezone>-9</timezone>
36     </developer>
37   </developers>
38
39   <organization>
40     <name>Stigmata Project, Sourceforge.jp</name>
41     <url>http://stigmata.sourceforge.jp/</url>
42   </organization>
43
44   <dependencies>
45     <dependency>
46       <groupId>asm</groupId>
47       <artifactId>asm-all</artifactId>
48       <version>2.2.3</version>
49       <scope>compile</scope>
50     </dependency>
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <version>4.3</version>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <licenses>
60     <license>
61       <name>Apache License 2.0</name>
62       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
63       <distribution>repo</distribution>
64     </license>
65   </licenses>
66
67   <distributionManagement>
68     <repository>
69       <id>shell.sourceforge.jp</id>
70       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/htdocs/maven2</url>
71     </repository>
72     <site>
73       <id>shell.sourceforge.jp</id>
74       <url>scp://tama3@shell.sourceforge.jp/home/groups/s/st/stigmata/digger/htdocs</url>
75     </site>
76   </distributionManagement>
77
78   <scm>
79     <connection>scm:svn:http://svn.sourceforge.jp/svnroot/stigmata/digger/trunk</connection>
80     <developerConnection>scm:svn:svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/digger/trunk/</developerConnection>
81     <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=stigmata</url>
82   </scm>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.maven.plugins</groupId>
88         <artifactId>maven-compiler-plugin</artifactId>
89         <configuration>
90           <source>1.6</source>
91           <target>1.6</target>
92           <encoding>utf-8</encoding>
93         </configuration>
94       </plugin>
95
96       <!-- for JUnit4 -->
97       <plugin>
98         <artifactId>maven-surefire-plugin</artifactId>
99         <version>2.3</version>
100       </plugin>
101
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-site-plugin</artifactId>
105         <configuration>
106           <inputEncoding>utf-8</inputEncoding>
107           <outputEncoding>utf-8</outputEncoding>
108           <locales>en</locales>
109         </configuration>
110       </plugin>
111
112       <plugin>
113         <groupId>org.apache.maven.plugins</groupId>
114         <artifactId>maven-javadoc-plugin</artifactId>
115         <configuration>
116           <charset>utf-8</charset>
117           <docencoding>utf-8</docencoding>
118           <locale>en</locale>
119         </configuration>
120       </plugin>
121
122       <plugin>
123         <artifactId>maven-release-plugin</artifactId>
124         <configuration>
125           <tagBase>svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/digger/tags</tagBase>
126         </configuration>
127       </plugin>
128     </plugins>
129   </build>
130
131   <reporting>
132     <plugins>
133       <plugin>
134         <groupId>org.apache.maven.plugins</groupId>
135         <artifactId>maven-project-info-reports-plugin</artifactId>
136       </plugin>
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-javadoc-plugin</artifactId>
140         <configuration>
141           <locale>en</locale>
142         </configuration>
143       </plugin>
144       <plugin>
145         <groupId>org.codehaus.mojo</groupId>
146         <artifactId>cobertura-maven-plugin</artifactId>
147       </plugin>
148       <plugin>
149         <artifactId>maven-pmd-plugin</artifactId>
150         <configuration>
151           <linkXref>true</linkXref>
152           <sourceEncoding>utf-8</sourceEncoding>
153           <targetJdk>1.6</targetJdk>
154         </configuration>
155       </plugin>
156       <plugin>
157         <groupId>org.apache.maven.plugins</groupId>
158         <artifactId>maven-jxr-plugin</artifactId>
159       </plugin>
160       <plugin>
161         <groupId>org.apache.maven.plugins</groupId>
162         <artifactId>maven-changes-plugin</artifactId>
163         <reportSets>
164           <reportSet>
165             <reports>
166               <report>changes-report</report>
167             </reports>
168           </reportSet>
169         </reportSets>
170       </plugin>
171       <plugin>
172         <groupId>org.codehaus.mojo</groupId>
173         <artifactId>findbugs-maven-plugin</artifactId>
174         <configuration>
175           <xmlOutput>false</xmlOutput>
176           <threshold>Normal</threshold>
177           <effort>Default</effort>
178         </configuration>
179       </plugin>
180     </plugins>
181   </reporting>
182 </project>