fix build since last maven module structure
[lispflowmapping.git] / commons / code-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.lispflowmapping</groupId>
8                 <artifactId>lispflowmapping-commons</artifactId>
9                 <version>0.1.0-SNAPSHOT</version>
10                 <relativePath>../parent</relativePath>
11         </parent>
12         <artifactId>lispflowmapping-code-commons</artifactId>
13         <version>0.1.0-SNAPSHOT</version>
14         <packaging>pom</packaging>
15         <build>
16                 <!--plugins>
17                         <plugin>
18                                 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
19                                 <artifactId>maven-java-formatter-plugin</artifactId>
20                                 <version>0.3.1</version>
21                                 <configuration>
22                                         <compilerSource>1.6</compilerSource>
23                                         <compilerCompliance>1.6</compilerCompliance>
24                                         <compilerTargetPlatform>1.6</compilerTargetPlatform>
25                                         <configFile>eclipse/formatter.xml</configFile>
26                                 </configuration>
27                                  <dependencies>
28                                            <dependency>
29                                                        <groupId>org.opendaylight.lispflowmapping</groupId>
30                                                        <artifactId>common.build.tools</artifactId>
31                                                        <version>0.1.0-SNAPSHOT</version>
32                                            </dependency>
33                                  </dependencies>
34                                 <executions>
35                                         <execution>
36                                                 <goals>
37                                                         <goal>format</goal>
38                                                 </goals>
39                                         </execution>
40                                 </executions>
41                         </plugin>
42                 </plugins-->
43         </build>
44         <dependencies>
45                 <dependency>
46                         <groupId>org.opendaylight.lispflowmapping</groupId>
47                         <artifactId>common.unittest.tools</artifactId>
48                         <version>0.1.0-SNAPSHOT</version>
49                         <scope>test</scope>
50                 </dependency>
51                 <dependency>
52                         <groupId>junit</groupId>
53                         <artifactId>junit</artifactId>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.hamcrest</groupId>
57                         <artifactId>hamcrest-core</artifactId>
58                         <scope>test</scope>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.jmock</groupId>
62                         <artifactId>jmock-junit4</artifactId>
63                         <scope>test</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.jmock</groupId>
67                         <artifactId>jmock-legacy</artifactId>
68                         <scope>test</scope>
69                 </dependency>
70                 <dependency>
71                         <groupId>junit-addons</groupId>
72                         <artifactId>junit-addons</artifactId>
73                         <scope>test</scope>
74                 </dependency>
75         </dependencies>
76 </project>