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