append to an existing file if already there
[lwes-journaller-java.git] / pom.xml
blob451cab5be468836dfaf84946514348c2f602552d
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-journaller-java</artifactId>
7     <packaging>jar</packaging>
8     <version>0.0.5-SNAPSHOT</version>
9     <name>lwes-journaller-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-logging</groupId>
20             <artifactId>commons-logging</artifactId>
21             <version>1.1.1</version>
22         </dependency>
23         <dependency>
24             <groupId>org.lwes</groupId>
25             <artifactId>lwes-java</artifactId>
26             <version>0.1.1</version>
27         </dependency>
28         <dependency>
29             <groupId>log4j</groupId>
30             <artifactId>log4j</artifactId>
31             <version>1.2.15</version>
32             <exclusions>
33                 <exclusion>
34                     <groupId>com.sun.jmx</groupId>
35                     <artifactId>jmxri</artifactId>
36                 </exclusion>
37                 <exclusion>
38                     <groupId>com.sun.jdmk</groupId>
39                     <artifactId>jmxtools</artifactId>
40                 </exclusion>
41                 <exclusion>
42                     <groupId>javax.jms</groupId>
43                     <artifactId>jms</artifactId>
44                 </exclusion>
45                 <exclusion>
46                     <groupId>javax.mail</groupId>
47                     <artifactId>mail</artifactId>
48                 </exclusion>
49                 <exclusion>
50                     <groupId>javax.activation</groupId>
51                     <artifactId>activation</artifactId>
52                 </exclusion>
53             </exclusions>
54         </dependency>
55         <dependency>
56             <groupId>commons-cli</groupId>
57             <artifactId>commons-cli</artifactId>
58             <version>1.2</version>
59         </dependency>
60     </dependencies>
61     <build>
62         <resources>
63             <resource>
64                 <directory>src/main/resources</directory>
65                 <filtering>true</filtering>
66             </resource>
67         </resources>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-jar-plugin</artifactId>
72                 <configuration>
73                     <excludes>
74                         <exclude>*.xml</exclude>
75                         <exclude>*.properties</exclude>
76                         <exclude>*.esf</exclude>
77                     </excludes>
78                 </configuration>
79             </plugin>
80             <plugin>
81                 <groupId>org.apache.maven.plugins</groupId>
82                 <artifactId>maven-resources-plugin</artifactId>
83                 <configuration>
84                     <encoding>UTF-8</encoding>
85                 </configuration>
86             </plugin>
87             <plugin>
88                 <artifactId>maven-compiler-plugin</artifactId>
89                 <configuration>
90                     <source>1.5</source>
91                     <target>1.5</target>
92                 </configuration>
93             </plugin>
94             <plugin>
95                 <artifactId>maven-surefire-plugin</artifactId>
96                 <version>2.3</version>
97             </plugin>
98             <plugin>
99                 <groupId>org.codehaus.mojo</groupId>
100                 <artifactId>cobertura-maven-plugin</artifactId>
101             </plugin>
102             <plugin>
103                 <artifactId>maven-assembly-plugin</artifactId>
104                 <configuration>
105                     <descriptors>
106                         <descriptor>src/assemble/distribution.xml</descriptor>
107                     </descriptors>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112     <repositories>
113         <repository>
114             <id>central</id>
115             <name>Maven central repository</name>
116             <url>http://repo1.maven.org/maven2/</url>
117         </repository>
118     </repositories>
120 </project>