blob: 956bed8e61976cf4ac935de22415d6c2e4a11b2f [file] [log] [blame]
Thomas Vachuska88716912015-11-13 08:15:01 -08001<?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"
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>
31 <onos.version>1.4.0-SNAPSHOT</onos.version>
32 <onos.app.name>org.onos.byon-gui</onos.app.name>
33 <onos.app.requires>org.onos.byon</onos.app.requires>
34 <onos.app.origin>Apps-R-Us LLC, Inc. GmbH</onos.app.origin>
35 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onos.byon</groupId>
40 <artifactId>byon</artifactId>
41 <version>${project.version}</version>
42 <scope>provided</scope>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 <version>${onos.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-osgi</artifactId>
54 <version>${onos.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <version>4.11</version>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onos-api</artifactId>
67 <version>${onos.version}</version>
68 <scope>test</scope>
69 <classifier>tests</classifier>
70 </dependency>
71
72 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.scr.annotations</artifactId>
75 <version>1.9.8</version>
76 <scope>provided</scope>
77 </dependency>
78 </dependencies>
79
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-bundle-plugin</artifactId>
85 <version>2.5.3</version>
86 <extensions>true</extensions>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-compiler-plugin</artifactId>
91 <version>2.5.1</version>
92 <configuration>
93 <source>1.8</source>
94 <target>1.8</target>
95 </configuration>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.felix</groupId>
99 <artifactId>maven-scr-plugin</artifactId>
100 <version>1.20.0</version>
101 <executions>
102 <execution>
103 <id>generate-scr-srcdescriptor</id>
104 <goals>
105 <goal>scr</goal>
106 </goals>
107 </execution>
108 </executions>
109 <configuration>
110 <supportedProjectTypes>
111 <supportedProjectType>bundle</supportedProjectType>
112 <supportedProjectType>war</supportedProjectType>
113 </supportedProjectTypes>
114 </configuration>
115 </plugin>
116 <plugin>
117 <groupId>org.onosproject</groupId>
118 <artifactId>onos-maven-plugin</artifactId>
119 <version>1.4</version>
120 <executions>
121 <execution>
122 <id>cfg</id>
123 <phase>generate-resources</phase>
124 <goals>
125 <goal>cfg</goal>
126 </goals>
127 </execution>
128 <execution>
129 <id>app</id>
130 <phase>package</phase>
131 <goals>
132 <goal>app</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
139
140</project>