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