OSDN Git Service

Fixed a bug in Lens.toJSON(), which does not output array brackets [], when the array...
[xerial/xerial-core.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
2   <parent>\r
3     <artifactId>xerial-project</artifactId>\r
4     <groupId>org.xerial</groupId>\r
5     <version>1.1</version>\r
6   </parent>\r
7 \r
8   <modelVersion>4.0.0</modelVersion>\r
9   <groupId>org.xerial</groupId>\r
10   <artifactId>xerial-core</artifactId>\r
11   <name>Xerial Core</name>\r
12   <version>1.0.13-SNAPSHOT</version>\r
13   <description>xerial-core is a common utilities for the Xerial project.</description>\r
14 \r
15   <build>\r
16     <resources>\r
17       <resource>\r
18         <directory>src/main/java</directory>\r
19       </resource>\r
20       <resource>\r
21         <directory>src/main/resources</directory>\r
22         <excludes>\r
23           <exclude>**/.svn/**</exclude>\r
24         </excludes>\r
25       </resource>\r
26     </resources>\r
27     <testResources>\r
28       <testResource>\r
29         <directory>src/test/java</directory>\r
30       </testResource>\r
31       <testResource>\r
32         <directory>src/test/resources</directory>\r
33       </testResource>\r
34     </testResources>\r
35 \r
36     <plugins>\r
37       <plugin>\r
38         <groupId>org.xerial.maven</groupId>\r
39         <artifactId>maven-antlr-plugin</artifactId>\r
40             <version>1.3</version>\r
41         <executions>\r
42           <execution>\r
43             <phase>generate-sources</phase>\r
44             <goals>\r
45               <goal>generate</goal>\r
46             </goals>\r
47           </execution>\r
48         </executions>\r
49         <configuration>\r
50           <sourceDirectory>${basedir}/src/main/java</sourceDirectory>\r
51         </configuration>\r
52       </plugin>\r
53       \r
54       <plugin>\r
55         <artifactId>maven-eclipse-plugin</artifactId>\r
56         <version>2.5.1</version>\r
57       </plugin>\r
58       \r
59       <plugin>\r
60         <artifactId>maven-assembly-plugin</artifactId>\r
61         <configuration>\r
62           <!-- <finalName>xerial</finalName>-->\r
63           <appendAssemblyId>true</appendAssemblyId>\r
64           <descriptors>\r
65             <descriptor>src/assembly/standalone.xml</descriptor>\r
66           </descriptors>\r
67           <archive>\r
68           <!-- \r
69             <manifest>\r
70               <mainClass>org.xerial.silk.cui.SilkMain</mainClass>\r
71             </manifest>\r
72              -->\r
73             <index>true</index>\r
74           </archive>\r
75         </configuration>\r
76         <executions>\r
77           <execution>\r
78             <id>silk</id> \r
79             <phase>package</phase> \r
80             <goals>\r
81               <goal>single</goal>\r
82             </goals>\r
83           </execution>\r
84         </executions>\r
85       </plugin>\r
86       \r
87       <plugin>\r
88         <artifactId>maven-release-plugin</artifactId>\r
89         <configuration>\r
90           <!--  do not run site-deploy goal, included in the default settings  -->\r
91           <goals>deploy</goals>\r
92         </configuration>\r
93       </plugin>\r
94     </plugins>\r
95   </build>\r
96 \r
97   <dependencies>\r
98     <dependency>\r
99       <groupId>org.antlr</groupId>\r
100       <artifactId>antlr</artifactId>\r
101       <version>3.1.3</version>\r
102     </dependency>\r
103     <dependency>\r
104       <groupId>xpp3</groupId>\r
105       <artifactId>xpp3</artifactId>\r
106       <version>1.1.4c</version>\r
107     </dependency>\r
108   </dependencies>\r
109 </project>