blob: 01e8c59f118986ee276b8a13efe548f63ea786ee [file] [log] [blame]
Thomas Vachuska88716912015-11-13 08:15:01 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Li7f977082016-03-09 11:18:22 -08003 ~ Copyright 2015-2016 Open Networking Laboratory
Thomas Vachuska88716912015-11-13 08:15:01 -08004 ~
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"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <groupId>org.onos.byon</groupId>
23 <artifactId>byon-gui</artifactId>
24 <version>1.0-SNAPSHOT</version>
25 <packaging>bundle</packaging>
26
27 <description>Build Your Own Network App GUI</description>
28 <url>http://onosproject.org</url>
29
30 <properties>
Thomas Vachuska88716912015-11-13 08:15:01 -080031 <onos.app.name>org.onos.byon-gui</onos.app.name>
Jian Li7f977082016-03-09 11:18:22 -080032 <onos.app.origin>ON.Lab</onos.app.origin>
33 <onos.app.title>BYON App</onos.app.title>
34 <onos.app.category>Sample</onos.app.category>
35 <onos.app.url>http://onosproject.org</onos.app.url>
Thomas Vachuska88716912015-11-13 08:15:01 -080036 <onos.app.requires>org.onos.byon</onos.app.requires>
37 <onos.app.origin>Apps-R-Us LLC, Inc. GmbH</onos.app.origin>
38 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onos.byon</groupId>
43 <artifactId>byon</artifactId>
44 <version>${project.version}</version>
45 <scope>provided</scope>
46 </dependency>
47
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 <version>${onos.version}</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-osgi</artifactId>
57 <version>${onos.version}</version>
58 </dependency>
59
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <version>4.11</version>
64 <scope>test</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-api</artifactId>
70 <version>${onos.version}</version>
71 <scope>test</scope>
72 <classifier>tests</classifier>
73 </dependency>
74
75 <dependency>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>org.apache.felix.scr.annotations</artifactId>
78 <version>1.9.8</version>
79 <scope>provided</scope>
80 </dependency>
81 </dependencies>
82
83 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>maven-bundle-plugin</artifactId>
88 <version>2.5.3</version>
89 <extensions>true</extensions>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-compiler-plugin</artifactId>
94 <version>2.5.1</version>
95 <configuration>
96 <source>1.8</source>
97 <target>1.8</target>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-scr-plugin</artifactId>
103 <version>1.20.0</version>
104 <executions>
105 <execution>
106 <id>generate-scr-srcdescriptor</id>
107 <goals>
108 <goal>scr</goal>
109 </goals>
110 </execution>
111 </executions>
112 <configuration>
113 <supportedProjectTypes>
114 <supportedProjectType>bundle</supportedProjectType>
115 <supportedProjectType>war</supportedProjectType>
116 </supportedProjectTypes>
117 </configuration>
118 </plugin>
119 <plugin>
120 <groupId>org.onosproject</groupId>
121 <artifactId>onos-maven-plugin</artifactId>
122 <version>1.4</version>
123 <executions>
124 <execution>
125 <id>cfg</id>
126 <phase>generate-resources</phase>
127 <goals>
128 <goal>cfg</goal>
129 </goals>
130 </execution>
131 <execution>
132 <id>app</id>
133 <phase>package</phase>
134 <goals>
135 <goal>app</goal>
136 </goals>
137 </execution>
138 </executions>
139 </plugin>
140 </plugins>
141 </build>
142
143</project>