OSDN Git Service

d3e95c92022dbc82959581cf135f621a7b63babd
[coroid/jnicoapi.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <groupId>yukihane</groupId>
6   <artifactId>jnicoapi</artifactId>
7   <version>1.0-SNAPSHOT</version>
8   <packaging>jar</packaging>
9
10   <name>jnicoapi</name>
11
12   <properties>
13     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14   </properties>
15
16   <build>
17     <defaultGoal>compile</defaultGoal>
18     <sourceDirectory>src</sourceDirectory>
19     <testSourceDirectory>test</testSourceDirectory>
20     <outputDirectory>build/classes</outputDirectory>
21     <testOutputDirectory>build/test/classes</testOutputDirectory>
22     <resources>
23       <resource>
24         <directory>src/resources</directory>
25       </resource>
26     </resources>
27     <testResources>
28       <testResource>
29         <directory>test/testdata</directory>
30       </testResource>
31     </testResources>
32
33     <plugins>
34       <plugin>
35         <groupId>org.codehaus.gmaven</groupId>
36         <artifactId>gmaven-plugin</artifactId>
37         <version>1.4</version>
38         <executions>
39           <execution>
40             <goals>
41               <goal>generateStubs</goal>
42               <goal>compile</goal>
43               <!--
44               <goal>generateTestStubs</goal>
45               <goal>testCompile</goal>
46               -->
47             </goals>
48             <configuration>
49               <sources>
50                 <fileset>
51                   <directory>${project.build.sourceDirectory}</directory>
52                   <includes>
53                     <include>**/*.groovy</include>
54                   </includes>
55                 </fileset>
56               </sources>
57               <providerSelection>2.0</providerSelection>
58             </configuration>
59           </execution>
60         </executions>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-compiler-plugin</artifactId>
65         <configuration>
66           <source>1.7</source>
67           <target>1.7</target>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72   <repositories>
73     <repository>
74       <url>http://download.eclipse.org/rt/eclipselink/maven.repo/</url>
75       <id>eclipselink</id>
76       <layout>default</layout>
77       <name>Repository for library Library[eclipselink]</name>
78     </repository>
79   </repositories>
80
81   <reporting>
82     <outputDirectory>build/site</outputDirectory>
83
84     <plugins>
85       <plugin>
86         <groupId>org.apache.maven.plugins</groupId>
87         <artifactId>maven-surefire-report-plugin</artifactId>
88       </plugin>
89 <!--
90       <plugin>
91         <groupId>org.codehaus.mojo</groupId>
92         <artifactId>cobertura-maven-plugin</artifactId>
93       </plugin>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-jxr-plugin</artifactId>
97       </plugin>
98 -->
99     </plugins>
100   </reporting>
101
102   <dependencies>
103     <dependency>
104         <groupId>org.codehaus.groovy</groupId>
105         <artifactId>groovy-all</artifactId>
106         <version>2.0.1</version>
107     </dependency>
108     <dependency>
109         <groupId>com.h2database</groupId>
110         <artifactId>h2</artifactId>
111         <version>1.2.135</version>
112     </dependency>
113     <dependency>
114         <groupId>org.liquibase</groupId>
115         <artifactId>liquibase-core</artifactId>
116         <version>1.9.5</version>
117     </dependency>
118     <dependency>
119         <groupId>org.apache.httpcomponents</groupId>
120         <artifactId>httpclient</artifactId>
121         <version>4.1.2</version>
122     </dependency>
123     <dependency>
124         <groupId>org.apache.httpcomponents</groupId>
125         <artifactId>httpcore</artifactId>
126         <version>4.1.2</version>
127     </dependency>
128     <dependency>
129         <groupId>rome</groupId>
130         <artifactId>rome</artifactId>
131         <version>1.0</version>
132     </dependency>
133     <dependency>
134         <groupId>net.sourceforge.nekohtml</groupId>
135         <artifactId>nekohtml</artifactId>
136         <version>1.9.16</version>
137     </dependency>
138     <dependency>
139         <groupId>org.jdom</groupId>
140         <artifactId>jdom</artifactId>
141         <version>1.1.3</version>
142     </dependency>
143     <dependency>
144         <groupId>xerces</groupId>
145         <artifactId>xercesImpl</artifactId>
146         <version>2.10.0</version>
147     </dependency>
148     <dependency>
149       <groupId>commons-cli</groupId>
150       <artifactId>commons-cli</artifactId>
151       <version>1.2</version>
152     </dependency>
153     <dependency>
154       <groupId>commons-codec</groupId>
155       <artifactId>commons-codec</artifactId>
156       <version>1.4</version>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160         <groupId>commons-collections</groupId>
161         <artifactId>commons-collections</artifactId>
162         <version>3.2.1</version>
163     </dependency>
164     <dependency>
165         <groupId>commons-configuration</groupId>
166         <artifactId>commons-configuration</artifactId>
167         <version>1.6</version>
168     </dependency>
169     <dependency>
170         <groupId>commons-io</groupId>
171         <artifactId>commons-io</artifactId>
172         <version>2.1</version>
173     </dependency>
174     <dependency>
175         <groupId>commons-lang</groupId>
176         <artifactId>commons-lang</artifactId>
177         <version>2.5</version>
178     </dependency>
179     <dependency>
180       <groupId>junit</groupId>
181       <artifactId>junit</artifactId>
182       <version>4.10</version>
183       <scope>test</scope>
184     </dependency>
185     <dependency>
186         <groupId>ch.qos.logback</groupId>
187         <artifactId>logback-classic</artifactId>
188         <version>0.9.29</version>
189     </dependency>
190     <dependency>
191         <groupId>ch.qos.logback</groupId>
192         <artifactId>logback-core</artifactId>
193         <version>0.9.29</version>
194     </dependency>
195     <dependency>
196         <groupId>org.slf4j</groupId>
197         <artifactId>slf4j-api</artifactId>
198         <version>1.6.2</version>
199     </dependency>
200     <dependency>
201         <groupId>org.slf4j</groupId>
202         <artifactId>jcl-over-slf4j</artifactId>
203         <version>1.6.2</version>
204     </dependency>
205     <dependency>
206         <groupId>org.slf4j</groupId>
207         <artifactId>log4j-over-slf4j</artifactId>
208         <version>1.6.2</version>
209     </dependency>
210     <dependency>
211       <groupId>org.eclipse.persistence</groupId>
212       <artifactId>eclipselink</artifactId>
213       <version>2.3.0</version>
214     </dependency>
215     <dependency>
216       <groupId>org.eclipse.persistence</groupId>
217       <artifactId>javax.persistence</artifactId>
218       <version>2.0.3</version>
219     </dependency>
220     <dependency>
221       <groupId>org.eclipse.persistence</groupId>
222       <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
223       <version>2.3.0</version>
224       <scope>provided</scope>
225     </dependency>
226   </dependencies>
227 </project>