Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / distribution / opendaylight / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <prerequisites>
6     <maven>3.0</maven>
7   </prerequisites>
8
9   <scm>
10     <connection>scm:svn:https://wwwin-svn-sjc.cisco.com/eng/csdncontroller/trunk/</connection>
11     <developerConnection>scm:svn:https://wwwin-svn-sjc.cisco.com/eng/csdncontroller/trunk/</developerConnection>
12   </scm>
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>commons.opendaylight</artifactId>
16     <version>1.4.0-SNAPSHOT</version>
17     <relativePath>../../commons/opendaylight</relativePath>
18   </parent>
19
20   <repositories>
21     <!-- To get SVNKit -->
22     <repository>
23       <id>svnkit-snapshots</id>
24       <name>svnkit-snapshots</name>
25       <url>${nexusproxy}/repositories/svnkit-snapshots/</url>
26     </repository>
27   </repositories>
28
29   <groupId>org.opendaylight.controller</groupId>
30   <artifactId>distribution.opendaylight</artifactId>
31   <version>0.1.0-SNAPSHOT</version>
32   <packaging>pom</packaging>
33   <modules>
34     <module>../../clustering/services</module>
35     <module>../../clustering/services_implementation</module>
36     <module>../../clustering/stub</module>
37     <module>../../clustering/test</module>
38     <module>../../../third-party/openflowj</module>
39     <module>../../../third-party/net.sf.jung2</module>
40     <module>../../../third-party/jersey-servlet</module>
41     
42     <!-- SAL bundles -->
43     <module>../../sal/api</module>
44     <module>../../sal/implementation</module>
45
46     <!-- Debug and logging -->
47     <module>../../logging/bridge</module>
48   </modules>
49   
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.codehaus.mojo</groupId>
54         <artifactId>buildnumber-maven-plugin</artifactId>
55         <version>1.2</version>
56         <executions>
57           <execution>
58             <phase>validate</phase>
59             <goals>
60               <goal>create</goal>
61             </goals>
62           </execution>
63         </executions>
64         <configuration>
65           <doCheck>false</doCheck>
66           <doUpdate>false</doUpdate>
67           <providerImplementations>
68             <svn>javasvn</svn>
69           </providerImplementations>
70           <revisionOnScmFailure>VersionUnknown</revisionOnScmFailure>
71         </configuration>
72         <dependencies>
73           <dependency>
74             <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
75             <artifactId>maven-scm-provider-svnjava</artifactId>
76             <version>2.0.5</version>
77           </dependency>
78           <dependency>
79             <groupId>org.tmatesoft.svnkit</groupId>
80             <artifactId>svnkit</artifactId>
81             <version>1.7.4-v1</version>
82           </dependency>
83           <dependency>
84             <groupId>org.apache.maven.scm</groupId>
85             <artifactId>maven-scm-provider-svn-commons</artifactId>
86             <version>1.7</version>
87           </dependency>
88         </dependencies>
89       </plugin>
90       <plugin>
91         <artifactId>maven-assembly-plugin</artifactId>
92         <version>2.3</version>
93         <executions>
94           <execution>
95             <id>distro-assembly</id>
96             <phase>package</phase>
97             <goals>
98               <goal>single</goal>
99             </goals>
100             <configuration>
101               <descriptors>
102                 <descriptor>src/assemble/bin.xml</descriptor>
103               </descriptors>
104               <finalName>${project.artifactId}-${build.suffix}</finalName>
105             </configuration>
106           </execution>
107         </executions>
108       </plugin>
109     </plugins>
110   </build>
111 </project>