Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 3 | ~ Copyright 2015-2016 Open Networking Laboratory |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 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> |
Yuta HIGUCHI | 4d47407 | 2016-12-13 18:17:45 -0800 | [diff] [blame] | 22 | <version>1.9.0-SNAPSHOT</version> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 23 | <relativePath>../../pom.xml</relativePath> |
| 24 | </parent> |
| 25 | |
| 26 | <groupId>org.onosproject</groupId> |
| 27 | <artifactId>onos-app-ecord-co</artifactId> |
Yuta HIGUCHI | 4d47407 | 2016-12-13 18:17:45 -0800 | [diff] [blame] | 28 | <version>1.9.0-SNAPSHOT</version> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>Enterprise CORD for Central Office</description> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 32 | |
| 33 | <properties> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 34 | <onos.app.name>org.onosproject.ecord.co</onos.app.name> |
Jian Li | 7f97708 | 2016-03-09 11:18:22 -0800 | [diff] [blame] | 35 | <onos.app.origin>ON.Lab</onos.app.origin> |
| 36 | <onos.app.title>Enterprise CORD App</onos.app.title> |
| 37 | <onos.app.category>Utility</onos.app.category> |
| 38 | <onos.app.url>http://onosproject.org</onos.app.url> |
HIGUCHI Yuta | 1ed0da2 | 2015-12-15 15:11:13 -0800 | [diff] [blame] | 39 | <!-- TODO App dependency not working? --> |
fra | 3b9d332 | 2016-08-04 14:27:23 +0200 | [diff] [blame] | 40 | <onos.app.requires>org.onosproject.incubator.rpc,org.onosproject.incubator.rpc.grpc,org.onosproject.optical-model</onos.app.requires> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 4aa3835 | 2017-01-10 14:47:49 -0800 | [diff] [blame^] | 46 | <artifactId>onos-apps-optical-model</artifactId> |
fra | 3b9d332 | 2016-08-04 14:27:23 +0200 | [diff] [blame] | 47 | <version>${onos.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 51 | <artifactId>onos-api</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onlab-osgi</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-core-dist</artifactId> |
| 62 | <version>${onos.version}</version> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>junit</groupId> |
| 67 | <artifactId>junit</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>org.onosproject</groupId> |
| 73 | <artifactId>onos-api</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 74 | <scope>test</scope> |
| 75 | <classifier>tests</classifier> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.apache.felix</groupId> |
| 80 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 81 | <scope>provided</scope> |
| 82 | </dependency> |
HIGUCHI Yuta | 1ed0da2 | 2015-12-15 15:11:13 -0800 | [diff] [blame] | 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.apache.commons</groupId> |
| 86 | <artifactId>commons-lang3</artifactId> |
| 87 | </dependency> |
| 88 | |
| 89 | <dependency> |
| 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onlab-misc</artifactId> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>com.google.guava</groupId> |
| 96 | <artifactId>guava</artifactId> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.glassfish.jersey.core</groupId> |
| 101 | <artifactId>jersey-client</artifactId> |
HIGUCHI Yuta | 1ed0da2 | 2015-12-15 15:11:13 -0800 | [diff] [blame] | 102 | </dependency> |
Naoki Shiota | f16fb6d | 2015-12-17 14:19:36 -0800 | [diff] [blame] | 103 | |
| 104 | <dependency> |
| 105 | <groupId>org.osgi</groupId> |
| 106 | <artifactId>org.osgi.compendium</artifactId> |
Naoki Shiota | f16fb6d | 2015-12-17 14:19:36 -0800 | [diff] [blame] | 107 | <scope>provided</scope> |
| 108 | </dependency> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 109 | </dependencies> |
| 110 | |
| 111 | <build> |
HIGUCHI Yuta | 1ed0da2 | 2015-12-15 15:11:13 -0800 | [diff] [blame] | 112 | <pluginManagement> |
| 113 | <plugins> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.karaf.tooling</groupId> |
| 116 | <artifactId>karaf-maven-plugin</artifactId> |
| 117 | <version>3.0.5</version> |
| 118 | <extensions>true</extensions> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </pluginManagement> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 122 | <plugins> |
| 123 | <plugin> |
| 124 | <groupId>org.apache.felix</groupId> |
| 125 | <artifactId>maven-bundle-plugin</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 126 | <extensions>true</extensions> |
| 127 | </plugin> |
| 128 | <plugin> |
| 129 | <groupId>org.apache.maven.plugins</groupId> |
| 130 | <artifactId>maven-compiler-plugin</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 131 | <configuration> |
| 132 | <source>1.8</source> |
| 133 | <target>1.8</target> |
| 134 | </configuration> |
| 135 | </plugin> |
| 136 | <plugin> |
| 137 | <groupId>org.apache.felix</groupId> |
| 138 | <artifactId>maven-scr-plugin</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 139 | <executions> |
| 140 | <execution> |
| 141 | <id>generate-scr-srcdescriptor</id> |
| 142 | <goals> |
| 143 | <goal>scr</goal> |
| 144 | </goals> |
| 145 | </execution> |
| 146 | </executions> |
| 147 | <configuration> |
| 148 | <supportedProjectTypes> |
| 149 | <supportedProjectType>bundle</supportedProjectType> |
| 150 | <supportedProjectType>war</supportedProjectType> |
| 151 | </supportedProjectTypes> |
| 152 | </configuration> |
| 153 | </plugin> |
| 154 | <plugin> |
| 155 | <groupId>org.onosproject</groupId> |
| 156 | <artifactId>onos-maven-plugin</artifactId> |
Marc De Leenheer | caf9eb9 | 2015-11-10 16:36:09 +0900 | [diff] [blame] | 157 | <executions> |
| 158 | <execution> |
| 159 | <id>cfg</id> |
| 160 | <phase>generate-resources</phase> |
| 161 | <goals> |
| 162 | <goal>cfg</goal> |
| 163 | </goals> |
| 164 | </execution> |
| 165 | <execution> |
| 166 | <id>swagger</id> |
| 167 | <phase>generate-sources</phase> |
| 168 | <goals> |
| 169 | <goal>swagger</goal> |
| 170 | </goals> |
| 171 | </execution> |
| 172 | <execution> |
| 173 | <id>app</id> |
| 174 | <phase>package</phase> |
| 175 | <goals> |
| 176 | <goal>app</goal> |
| 177 | </goals> |
| 178 | </execution> |
| 179 | </executions> |
| 180 | </plugin> |
| 181 | </plugins> |
| 182 | </build> |
| 183 | |
| 184 | </project> |