Incrementing versions by 0.1.0 of packetcable for post-helium master branch
[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.2.0-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.7.0-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                 </dependency>
66                 <dependency>
67                         <groupId>ch.qos.logback</groupId>
68                         <artifactId>logback-core</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>ch.qos.logback</groupId>
72                         <artifactId>logback-classic</artifactId>
73                 </dependency>
74                 <dependency>
75                         <groupId>com.google.guava</groupId>
76                         <artifactId>guava</artifactId>
77                 </dependency>
78         </dependencies>
79
80         <modules></modules>
81
82         <build>
83                 <directory>${project.basedir}/target</directory>
84                 <outputDirectory>${project.build.directory}/classes</outputDirectory>
85                 <finalName>${project.artifactId}-${project.version}</finalName>
86                 <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
87                 <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
88                 <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
89                 <resources>
90                         <resource>
91                                 <directory>${project.basedir}/src/main/resources</directory>
92                         </resource>
93                 </resources>
94                 <testResources>
95                         <testResource>
96                                 <directory>${project.basedir}/src/test/resources</directory>
97                         </testResource>
98                 </testResources>
99                 <plugins>
100                         <plugin>
101                                 <groupId>org.apache.felix</groupId>
102                                 <artifactId>maven-bundle-plugin</artifactId>
103                                 <configuration>
104                                         <instructions>
105                                                 <Export-Package>org.pcmm*, org.umu.cops*</Export-Package>
106                                         </instructions>
107                                 </configuration>
108                         </plugin>
109                         <plugin>
110                                 <artifactId>maven-compiler-plugin</artifactId>
111                                 <configuration>
112                                         <source>1.7</source>
113                                         <target>1.7</target>
114                                 </configuration>
115                         </plugin>
116                 </plugins>
117         </build>
118 </project>