OSDN Git Service

srcディレクトリとdocディレクトリを作成
[xdf/git-repos.git] / xdf / 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/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>jp.ac.aiit.xdf</groupId>
5         <artifactId>xdf</artifactId>
6         <packaging>jar</packaging>
7         <version>1.0-SNAPSHOT</version>
8         <name>xdf</name>
9         <url>http://maven.apache.org</url>
10         <parent>
11                 <groupId>jp.ac.aiit.xdf</groupId>
12                 <artifactId>xdf-all</artifactId>
13                 <version>1.0-SNAPSHOT</version>
14                 <relativePath>../pom.xml</relativePath>
15         </parent>
16         <build>
17                 <directory>target</directory>
18                 <outputDirectory>target/classes</outputDirectory>
19                 <finalName>${project.artifactId}-${project.version}</finalName>
20                 <testOutputDirectory>target/test-classes</testOutputDirectory>
21                 <sourceDirectory>src/main/java</sourceDirectory>
22                 <testSourceDirectory>src/test/java</testSourceDirectory>
23                 <resources>
24                         <resource>
25                                 <directory>src/main/resources</directory>
26                         </resource>
27                 </resources>
28                 <testResources>
29                         <testResource>
30                                 <directory>src/test/resources</directory>
31                         </testResource>
32                 </testResources>
33         </build>
34         <dependencies>
35                 <dependency>
36                         <groupId>org.testng</groupId>
37                         <artifactId>testng</artifactId>
38                         <version>5.8</version>
39                         <classifier>jdk15</classifier>
40                         <scope>test</scope>
41                 </dependency>
42         </dependencies>
43 </project>