dcf970f6f523c159160a825cfdc177b28d21bf0a
[packetcable.git] / packetcable-driver / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6         <parent>
7                 <groupId>org.opendaylight.packetcable</groupId>
8                 <artifactId>packetcable</artifactId>
9                 <version>1.1-SNAPSHOT</version>
10         </parent>
11         <artifactId>packetcable-driver</artifactId>
12         <packaging>bundle</packaging>
13         
14         <description>
15         A lightweight implementation of PCMM COPS PDP client
16     </description>
17
18         <url></url>
19         <inceptionYear>2013</inceptionYear>
20
21         <licenses>
22                 <license>
23                 </license>
24         </licenses>
25
26         <mailingLists>
27                 <mailingList>
28                 </mailingList>
29         </mailingLists>
30
31         <developers>
32                 <developer>
33                 </developer>
34         </developers>
35
36         <contributors>
37                 <contributor>
38                 </contributor>
39         </contributors>
40
41         <scm>
42                 <connection></connection>
43                 <developerConnection></developerConnection>
44                 <url></url>
45         </scm>
46
47         <issueManagement>
48                 <system></system>
49                 <url></url>
50         </issueManagement>
51
52         <properties>
53                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54                 <yangtools.version>0.6.2-SNAPSHOT</yangtools.version>
55                 <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
56                 <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
57                 <nexus.repository.snapshot>opendaylight.snapshot</nexus.repository.snapshot>
58                 <nexus.repository.release>opendaylight.release</nexus.repository.release>
59         </properties>
60
61         <dependencies>
62                 <dependency>
63                         <groupId>junit</groupId>
64                         <artifactId>junit</artifactId>
65                         <version>4.11</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>ch.qos.logback</groupId>
69                         <artifactId>logback-core</artifactId>
70                         <version>1.0.9</version>
71                 </dependency>
72                 <dependency>
73                         <groupId>ch.qos.logback</groupId>
74                         <artifactId>logback-classic</artifactId>
75                         <version>1.0.9</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>com.google.guava</groupId>
79                         <artifactId>guava</artifactId>
80                         <version>13.0.1</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>javax.sip</groupId>
84                         <artifactId>jain-sip-ri</artifactId>
85                         <version>1.2.158</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>commons-primitives</groupId>
89                         <artifactId>commons-primitives</artifactId>
90                         <version>20041207.202534</version>
91                 </dependency>
92         </dependencies>
93
94         <modules></modules>
95
96         <build>
97                 <directory>${project.basedir}/target</directory>
98                 <outputDirectory>${project.build.directory}/classes</outputDirectory>
99                 <finalName>${project.artifactId}-${project.version}</finalName>
100                 <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
101                 <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
102                 <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
103                 <resources>
104                         <resource>
105                                 <directory>${project.basedir}/src/main/resources</directory>
106                         </resource>
107                 </resources>
108                 <testResources>
109                         <testResource>
110                                 <directory>${project.basedir}/src/test/resources</directory>
111                         </testResource>
112                 </testResources>
113                 <plugins>
114                         <plugin>
115                                 <artifactId>maven-compiler-plugin</artifactId>
116                                 <version>3.0</version>
117                                 <configuration>
118                                         <source>1.7</source>
119                                         <target>1.7</target>
120                                 </configuration>
121                         </plugin>
122                 </plugins>
123         </build>
124 </project>