blob: 52cf0e9a9d10d6afdc4c13c2b5ca7d5b63f1166e [file] [log] [blame]
Naoki Shiota5a056062016-05-05 18:43:59 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016 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
20 <parent>
21 <artifactId>onos-apps</artifactId>
22 <groupId>org.onosproject</groupId>
Thomas Vachuska7bd8aaa2016-06-02 16:50:40 -070023 <version>1.6.0-SNAPSHOT</version>
Naoki Shiota5a056062016-05-05 18:43:59 -070024 <relativePath>../pom.xml</relativePath>
25 </parent>
26
27 <artifactId>onos-app-newoptical</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>Application for setup optical network</description>
31 <url>http://onosproject.org</url>
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 <onos.app.name>org.onosproject.newoptical</onos.app.name>
36 <onos.app.category>Traffic Steering</onos.app.category>
37 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.origin>Open Networking Lab</onos.app.origin>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.onosproject</groupId>
HIGUCHI Yuta652ec6b2016-05-12 18:18:15 -070050 <artifactId>onos-optical-model</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
Naoki Shiota5a056062016-05-05 18:43:59 -070056 <artifactId>onos-core-dist</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <scope>test</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 <version>${project.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 <scope>provided</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.osgi</groupId>
82 <artifactId>org.osgi.compendium</artifactId>
83 <scope>provided</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>org.apache.karaf.shell</groupId>
88 <artifactId>org.apache.karaf.shell.console</artifactId>
89 <scope>provided</scope>
90 </dependency>
91
92 <dependency>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onos-cli</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97
98 </dependencies>
99
100 <build>
101 <pluginManagement>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.karaf.tooling</groupId>
105 <artifactId>karaf-maven-plugin</artifactId>
106 <extensions>true</extensions>
107 </plugin>
108 </plugins>
109 </pluginManagement>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-bundle-plugin</artifactId>
114 <extensions>true</extensions>
115 </plugin>
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-compiler-plugin</artifactId>
119 <configuration>
120 <source>1.8</source>
121 <target>1.8</target>
122 </configuration>
123 </plugin>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-scr-plugin</artifactId>
127 <executions>
128 <execution>
129 <id>generate-scr-srcdescriptor</id>
130 <goals>
131 <goal>scr</goal>
132 </goals>
133 </execution>
134 </executions>
135 <configuration>
136 <supportedProjectTypes>
137 <supportedProjectType>bundle</supportedProjectType>
138 <supportedProjectType>war</supportedProjectType>
139 </supportedProjectTypes>
140 </configuration>
141 </plugin>
142 <plugin>
143 <groupId>org.onosproject</groupId>
144 <artifactId>onos-maven-plugin</artifactId>
145 <executions>
146 <execution>
147 <id>cfg</id>
148 <phase>generate-resources</phase>
149 <goals>
150 <goal>cfg</goal>
151 </goals>
152 </execution>
153 <execution>
154 <id>swagger</id>
155 <phase>generate-sources</phase>
156 <goals>
157 <goal>swagger</goal>
158 </goals>
159 </execution>
160 <execution>
161 <id>app</id>
162 <phase>package</phase>
163 <goals>
164 <goal>app</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
169 </plugins>
170 </build>
171
172</project>