some reformatting
[lwes-java.git] / pom.xml
blobd1c788e1852ff6b50f26101f117b260001a62a54
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>1.0.1-SNAPSHOT</version>
9     <name>lwes-java</name>
10     <url>http://lwes.org</url>
12     <properties>
13         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14     </properties>
15     
16     <dependencies>
17         <dependency>
18             <groupId>junit</groupId>
19             <artifactId>junit</artifactId>
20             <version>4.4</version>
21             <scope>test</scope>
22         </dependency>
23         <dependency>
24             <groupId>commons-codec</groupId>
25             <artifactId>commons-codec</artifactId>
26             <version>1.3</version>
27             <scope>test</scope>
28         </dependency>
29         <dependency>
30             <groupId>commons-logging</groupId>
31             <artifactId>commons-logging</artifactId>
32             <version>1.1.1</version>
33         </dependency>
34         <dependency>
35             <groupId>net.java.dev.javacc</groupId>
36             <artifactId>javacc</artifactId>
37             <version>5.0</version>
38             <scope>compile</scope>
39         </dependency>
40         <dependency>
41             <groupId>log4j</groupId>
42             <artifactId>log4j</artifactId>
43             <version>1.2.15</version>
44             <exclusions>
45                 <exclusion>
46                     <groupId>com.sun.jmx</groupId>
47                     <artifactId>jmxri</artifactId>
48                 </exclusion>
49                 <exclusion>
50                     <groupId>com.sun.jdmk</groupId>
51                     <artifactId>jmxtools</artifactId>
52                 </exclusion>
53                 <exclusion>
54                     <groupId>javax.jms</groupId>
55                     <artifactId>jms</artifactId>
56                 </exclusion>
57                 <exclusion>
58                     <groupId>javax.mail</groupId>
59                     <artifactId>mail</artifactId>
60                 </exclusion>
61                 <exclusion>
62                     <groupId>javax.activation</groupId>
63                     <artifactId>activation</artifactId>
64                 </exclusion>
65             </exclusions>
66         </dependency>
67     </dependencies>
69     <build>
70         <resources>
71             <resource>
72                 <directory>src/main/resources</directory>
73                 <filtering>true</filtering>
74             </resource>
75         </resources>
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.maven.plugins</groupId>
79                 <artifactId>maven-source-plugin</artifactId>
80                 <executions>
81                     <execution>
82                         <phase>package</phase>
83                         <goals>
84                             <goal>jar</goal>
85                         </goals>
86                     </execution>
87                 </executions>
88             </plugin>
89             <plugin>
90                 <groupId>org.codehaus.mojo</groupId>
91                 <artifactId>javacc-maven-plugin</artifactId>
92                 <version>2.6</version>
93                 <executions>
94                     <execution>
95                         <id>javacc</id>
96                         <goals>
97                             <goal>javacc</goal>
98                         </goals>
99                         <configuration>
100                             <!--
101                             <debugParser>true</debugParser>
102                             <debugTokenManager>true</debugTokenManager>
103                             -->
104                         </configuration>
105                     </execution>
106                 </executions>
107             </plugin>
108             <plugin>
109                 <groupId>org.apache.maven.plugins</groupId>
110                 <artifactId>maven-resources-plugin</artifactId>
111                 <configuration>
112                     <encoding>UTF-8</encoding>
113                 </configuration>
114             </plugin>
115             <plugin>
116                 <artifactId>maven-compiler-plugin</artifactId>
117                 <configuration>
118                     <source>1.5</source>
119                     <target>1.5</target>
120                 </configuration>
121             </plugin>
122             <plugin>
123                 <artifactId>maven-surefire-plugin</artifactId>
124                 <version>2.3</version>
125             </plugin>
126             <plugin>
127                 <artifactId>maven-assembly-plugin</artifactId>
128                 <version>2.2-beta-3</version>
129                 <configuration>
130                     <descriptors>
131                         <descriptor>src/main/assembly/dist.xml</descriptor>
132                     </descriptors>
133                 </configuration>
134                 <executions>
135                     <execution>
136                         <phase>site</phase>
137                         <goals>
138                             <goal>assembly</goal>
139                         </goals>
140                     </execution>
141                 </executions>
142             </plugin>
143         </plugins>
144     </build>
145     <repositories>
146         <repository>
147             <id>central</id>
148             <name>Maven central repository</name>
149             <url>http://repo1.maven.org/maven2/</url>
150         </repository>
151     </repositories>
152     <reporting>
153         <plugins>
154             <plugin>
155                 <groupId>org.codehaus.mojo</groupId>
156                 <artifactId>emma-maven-plugin</artifactId>
157                 <inherited>true</inherited>
158             </plugin>
159             <plugin>
160                 <groupId>org.codehaus.mojo</groupId>
161                 <artifactId>surefire-report-maven-plugin</artifactId>
162                 <inherited>true</inherited>
163             </plugin>
164             <plugin>
165                 <groupId>org.apache.maven.plugins</groupId>
166                 <artifactId>maven-javadoc-plugin</artifactId>
167                 <version>2.6.1</version>
168             </plugin>
169         </plugins>
170     </reporting>
171 </project>