blob: 733b7a84305813dd83a2cff2871ddaae97049224 [file] [log] [blame]
Marc De Leenheercaf9eb92015-11-10 16:36:09 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <artifactId>onos-app-samples</artifactId>
21 <groupId>org.onosproject</groupId>
22 <version>1.4.0-SNAPSHOT</version>
23 <relativePath>../../pom.xml</relativePath>
24 </parent>
25
26 <groupId>org.onosproject</groupId>
27 <artifactId>onos-app-ecord-co</artifactId>
28 <version>1.4.0-SNAPSHOT</version>
29 <packaging>bundle</packaging>
30
31 <description>Enterprise CORD for Central Office</description>
32 <url>http://onosproject.org</url>
33
34 <properties>
35 <onos.version>1.4.0-SNAPSHOT</onos.version>
36 <onos.app.name>org.onosproject.ecord.co</onos.app.name>
37 <onos.app.origin>Open Networking Lab</onos.app.origin>
38 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-api</artifactId>
44 <version>${onos.version}</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-osgi</artifactId>
50 <version>${onos.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-core-dist</artifactId>
56 <version>${onos.version}</version>
57 </dependency>
58
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <version>4.11</version>
63 <scope>test</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <version>${onos.version}</version>
70 <scope>test</scope>
71 <classifier>tests</classifier>
72 </dependency>
73
74 <dependency>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>org.apache.felix.scr.annotations</artifactId>
77 <version>1.9.8</version>
78 <scope>provided</scope>
79 </dependency>
80 </dependencies>
81
82 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-bundle-plugin</artifactId>
87 <version>2.5.3</version>
88 <extensions>true</extensions>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-compiler-plugin</artifactId>
93 <version>2.5.1</version>
94 <configuration>
95 <source>1.8</source>
96 <target>1.8</target>
97 </configuration>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-scr-plugin</artifactId>
102 <version>1.20.0</version>
103 <executions>
104 <execution>
105 <id>generate-scr-srcdescriptor</id>
106 <goals>
107 <goal>scr</goal>
108 </goals>
109 </execution>
110 </executions>
111 <configuration>
112 <supportedProjectTypes>
113 <supportedProjectType>bundle</supportedProjectType>
114 <supportedProjectType>war</supportedProjectType>
115 </supportedProjectTypes>
116 </configuration>
117 </plugin>
118 <plugin>
119 <groupId>org.onosproject</groupId>
120 <artifactId>onos-maven-plugin</artifactId>
121 <version>1.5</version>
122 <executions>
123 <execution>
124 <id>cfg</id>
125 <phase>generate-resources</phase>
126 <goals>
127 <goal>cfg</goal>
128 </goals>
129 </execution>
130 <execution>
131 <id>swagger</id>
132 <phase>generate-sources</phase>
133 <goals>
134 <goal>swagger</goal>
135 </goals>
136 </execution>
137 <execution>
138 <id>app</id>
139 <phase>package</phase>
140 <goals>
141 <goal>app</goal>
142 </goals>
143 </execution>
144 </executions>
145 </plugin>
146 </plugins>
147 </build>
148
149</project>