Return literal empty string instead of a new String instance to help the jvm be efficient
[lwes-java.git] / pom.xml
blob94280d59354954fdacb15262026c06792874f8c0
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.0.3-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     </dependencies>
19     <build>
20         <sourceDirectory>src</sourceDirectory>
21         <testSourceDirectory>tests</testSourceDirectory>
22         <resources>
23           <resource>
24             <directory>src/main/resources</directory>
25             <filtering>true</filtering>
26           </resource>
27         </resources>
28         <plugins>
29             <plugin>
30                 <groupId>org.apache.maven.plugins</groupId>
31                 <artifactId>maven-resources-plugin</artifactId>
32                 <configuration>
33                     <encoding>UTF-8</encoding>
34                 </configuration>
35             </plugin>
36             <plugin>
37                 <artifactId>maven-compiler-plugin</artifactId>
38                 <configuration>
39                     <source>1.5</source>
40                     <target>1.5</target>
41                 </configuration>
42             </plugin>
43             <plugin>
44                 <artifactId>maven-surefire-plugin</artifactId>
45                 <version>2.3</version>
46             </plugin>
47         </plugins>
48     </build>
49     <repositories>
50         <repository>
51             <id>central</id>
52             <name>Maven central repository</name>
53             <url>http://repo1.maven.org/maven2/</url>
54         </repository>
55     </repositories>
56 </project>