merge from the trunk
[lwes-java.git] / pom.xml
blob74f49a166203df927a418bbc276a215212eecc22
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     <modelVersion>4.0.0</modelVersion>
5     <groupId>org.lwes</groupId>
6     <artifactId>lwes-java</artifactId>
7     <packaging>jar</packaging>
8     <version>0.3.0-SNAPSHOT</version>
9     <name>lwes-java</name>
10     <url>http://maven.apache.org</url>
11     <dependencies>
12         <dependency>
13             <groupId>junit</groupId>
14             <artifactId>junit</artifactId>
15             <version>4.4</version>
16             <scope>test</scope>
17         </dependency>
18         <dependency>
19             <groupId>commons-codec</groupId>
20             <artifactId>commons-codec</artifactId>
21             <version>1.3</version>
22             <scope>test</scope>
23         </dependency>
24     </dependencies>
25     <build>
26         <resources>
27             <resource>
28                 <directory>src/main/resources</directory>
29                 <filtering>true</filtering>
30             </resource>
31         </resources>
32         <plugins>
33             <plugin>
34                 <groupId>org.apache.maven.plugins</groupId>
35                 <artifactId>maven-source-plugin</artifactId>
36                 <executions>
37                     <execution>
38                         <phase>package</phase>
39                         <goals>
40                             <goal>jar</goal>
41                         </goals>
42                     </execution>
43                 </executions>
44             </plugin>
45             <plugin>
46                 <groupId>org.codehaus.mojo</groupId>
47                 <artifactId>javacc-maven-plugin</artifactId>
48                 <version>2.6</version>
49                 <executions>
50                     <execution>
51                         <id>javacc</id>
52                         <goals>
53                             <goal>javacc</goal>
54                         </goals>
55                     </execution>
56                 </executions>
57             </plugin>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-resources-plugin</artifactId>
61                 <configuration>
62                     <encoding>UTF-8</encoding>
63                 </configuration>
64             </plugin>
65             <plugin>
66                 <artifactId>maven-compiler-plugin</artifactId>
67                 <configuration>
68                     <source>1.5</source>
69                     <target>1.5</target>
70                 </configuration>
71             </plugin>
72             <plugin>
73                 <artifactId>maven-surefire-plugin</artifactId>
74                 <version>2.3</version>
75             </plugin>
76             <plugin>
77                 <artifactId>maven-assembly-plugin</artifactId>
78                 <version>2.2-beta-3</version>
79                 <configuration>
80                     <descriptors>
81                         <descriptor>src/main/assembly/dist.xml</descriptor>
82                     </descriptors>
83                 </configuration>
84                 <executions>
85                     <execution>
86                         <phase>site</phase>
87                         <goals>
88                             <goal>assembly</goal>
89                         </goals>
90                     </execution>
91                 </executions>
92             </plugin>
93         </plugins>
94     </build>
95     <repositories>
96         <repository>
97             <id>central</id>
98             <name>Maven central repository</name>
99             <url>http://repo1.maven.org/maven2/</url>
100         </repository>
101     </repositories>
102     <reporting>
103         <plugins>
104             <plugin>
105                 <groupId>org.codehaus.mojo</groupId>
106                 <artifactId>emma-maven-plugin</artifactId>
107                 <inherited>true</inherited>
108             </plugin>
109             <plugin>
110                 <groupId>org.codehaus.mojo</groupId>
111                 <artifactId>surefire-report-maven-plugin</artifactId>
112                 <inherited>true</inherited>
113             </plugin>
114             <plugin>
115                 <groupId>org.apache.maven.plugins</groupId>
116                 <artifactId>maven-javadoc-plugin</artifactId>
117                 <version>2.6.1</version>
118             </plugin>
119         </plugins>
120     </reporting>
121 </project>