Remove unused pom properties
[packetcable.git] / packetcable-emulator / 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
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.opendaylight.packetcable</groupId>
9         <artifactId>packetcable</artifactId>
10         <version>1.7.0-SNAPSHOT</version>
11     </parent>
12     <artifactId>packetcable-emulator</artifactId>
13     <packaging>jar</packaging>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <artifactId>maven-assembly-plugin</artifactId>
19                 <configuration>
20                     <descriptorRefs>
21                         <descriptorRef>jar-with-dependencies</descriptorRef>
22                     </descriptorRefs>
23                     <archive>
24                         <manifest>
25                             <mainClass>org.pcmm.rcd.impl.CMTS</mainClass>
26                         </manifest>
27                     </archive>
28                 </configuration>
29             </plugin>
30         </plugins>
31     </build>
32
33     <dependencies>
34         <dependency>
35             <groupId>org.opendaylight.packetcable</groupId>
36             <artifactId>packetcable-driver</artifactId>
37             <version>1.7.0-SNAPSHOT</version>
38             <scope>compile</scope>
39         </dependency>
40         <dependency>
41             <groupId>com.fasterxml.jackson.dataformat</groupId>
42             <artifactId>jackson-dataformat-yaml</artifactId>
43             <version>2.5.0</version>
44             <scope>compile</scope>
45         </dependency>
46         <dependency>
47             <groupId>ch.qos.logback</groupId>
48             <artifactId>logback-core</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>ch.qos.logback</groupId>
52             <artifactId>logback-classic</artifactId>
53         </dependency>
54     </dependencies>
55
56 </project>