rev version
[lwes-java.git] / pom.xml
blob97404ce9ba612f99ab0cff41bf566e4265db7bfa
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.1.1</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.apache.maven.plugins</groupId>
37                 <artifactId>maven-resources-plugin</artifactId>
38                 <configuration>
39                     <encoding>UTF-8</encoding>
40                 </configuration>
41             </plugin>
42             <plugin>
43                 <artifactId>maven-compiler-plugin</artifactId>
44                 <configuration>
45                     <source>1.5</source>
46                     <target>1.5</target>
47                 </configuration>
48             </plugin>
49             <plugin>
50                 <artifactId>maven-surefire-plugin</artifactId>
51                 <version>2.3</version>
52             </plugin>
53         </plugins>
54     </build>
55     <repositories>
56         <repository>
57             <id>central</id>
58             <name>Maven central repository</name>
59             <url>http://repo1.maven.org/maven2/</url>
60         </repository>
61     </repositories>
62 </project>