add deploy capabilities to build_tools module
[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         <modules>
16                 <module>api</module>
17                 <module>implementation</module>
18         </modules>
19         <build>
20                 <plugins>
21                         <plugin>
22                                 <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
23                                 <artifactId>maven-java-formatter-plugin</artifactId>
24                                 <version>0.3.1</version>
25                                 <configuration>
26                                         <compilerSource>1.6</compilerSource>
27                                         <compilerCompliance>1.6</compilerCompliance>
28                                         <compilerTargetPlatform>1.6</compilerTargetPlatform>
29                                         <configFile>eclipse/formatter.xml</configFile>
30                                 </configuration>
31                                  <dependencies>
32                                            <dependency>
33                                                        <groupId>org.opendaylight.lispflowmapping</groupId>
34                                                        <artifactId>common.build.tools</artifactId>
35                                                        <version>0.1.0-SNAPSHOT</version>
36                                            </dependency>
37                                  </dependencies>
38                                 <executions>
39                                         <execution>
40                                                 <goals>
41                                                         <goal>format</goal>
42                                                 </goals>
43                                         </execution>
44                                 </executions>
45                         </plugin>
46                 </plugins>
47         </build>
48         <dependencies>
49                 <dependency>
50                         <groupId>org.opendaylight.lispflowmapping</groupId>
51                         <artifactId>common.unittest.tools</artifactId>
52                         <version>0.1.0-SNAPSHOT</version>
53                         <scope>test</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>junit</groupId>
57                         <artifactId>junit</artifactId>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.hamcrest</groupId>
61                         <artifactId>hamcrest-core</artifactId>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.jmock</groupId>
66                         <artifactId>jmock-junit4</artifactId>
67                         <scope>test</scope>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.jmock</groupId>
71                         <artifactId>jmock-legacy</artifactId>
72                         <scope>test</scope>
73                 </dependency>
74                 <dependency>
75                         <groupId>junit-addons</groupId>
76                         <artifactId>junit-addons</artifactId>
77                         <scope>test</scope>
78                 </dependency>
79         </dependencies>
80 </project>