restructuring
[lwes-java.git] / pom.xml
blob5841d1a2ab1726f6dccc1b50ab5145908d8f5bad
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.2.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         <sourceDirectory>src</sourceDirectory>
27         <testSourceDirectory>tests</testSourceDirectory>
28         <resources>
29             <resource>
30                 <directory>src/main/resources</directory>
31                 <filtering>true</filtering>
32             </resource>
33         </resources>
34         <plugins>
35             <plugin>
36                 <groupId>org.codehaus.mojo</groupId>
37                 <artifactId>javacc-maven-plugin</artifactId>
38                 <version>2.6</version>
39                 <executions>
40                     <execution>
41                         <id>javacc</id>
42                         <goals>
43                             <goal>javacc</goal>
44                         </goals>
45                     </execution>
46                 </executions>
47             </plugin>
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-resources-plugin</artifactId>
51                 <configuration>
52                     <encoding>UTF-8</encoding>
53                 </configuration>
54             </plugin>
55             <plugin>
56                 <artifactId>maven-compiler-plugin</artifactId>
57                 <configuration>
58                     <source>1.5</source>
59                     <target>1.5</target>
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <artifactId>maven-surefire-plugin</artifactId>
64                 <version>2.3</version>
65             </plugin>
66         </plugins>
67     </build>
68     <repositories>
69         <repository>
70             <id>central</id>
71             <name>Maven central repository</name>
72             <url>http://repo1.maven.org/maven2/</url>
73         </repository>
74     </repositories>
75 </project>