Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [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 | |
| 20 | <parent> |
| 21 | <artifactId>onos-apps</artifactId> |
| 22 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | f5ad939 | 2018-02-20 23:58:33 +0000 | [diff] [blame] | 23 | <version>1.11.2-SNAPSHOT</version> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <artifactId>onos-app-newoptical</artifactId> |
| 27 | <packaging>bundle</packaging> |
| 28 | |
| 29 | <description>Application for setup optical network</description> |
| 30 | <url>http://onosproject.org</url> |
| 31 | |
| 32 | <properties> |
| 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 34 | <onos.app.name>org.onosproject.newoptical</onos.app.name> |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 35 | <onos.app.title>Packet/Optical Use-Case App</onos.app.title> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 36 | <onos.app.category>Traffic Steering</onos.app.category> |
Marc De Leenheer | 051bd42 | 2016-06-06 16:51:31 -0700 | [diff] [blame] | 37 | <onos.app.url>https://wiki.onosproject.org/display/ONOS/Packet+Optical+Convergence</onos.app.url> |
| 38 | <onos.app.origin>ON.Lab</onos.app.origin> |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 39 | <onos.app.requires> |
| 40 | org.onosproject.optical-model |
| 41 | </onos.app.requires> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-api</artifactId> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 52 | <artifactId>onos-optical-model</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 58 | <artifactId>onos-core-dist</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>junit</groupId> |
| 64 | <artifactId>junit</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onos-api</artifactId> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 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 | <scope>provided</scope> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.osgi</groupId> |
| 83 | <artifactId>org.osgi.compendium</artifactId> |
| 84 | <scope>provided</scope> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.apache.karaf.shell</groupId> |
| 89 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 90 | <scope>provided</scope> |
| 91 | </dependency> |
| 92 | |
| 93 | <dependency> |
| 94 | <groupId>org.onosproject</groupId> |
| 95 | <artifactId>onos-cli</artifactId> |
| 96 | <version>${project.version}</version> |
| 97 | </dependency> |
| 98 | |
Naoki Shiota | 03c29e1 | 2016-05-16 16:58:07 -0700 | [diff] [blame] | 99 | <dependency> |
Naoki Shiota | 7c3111b | 2016-06-09 16:12:11 -0700 | [diff] [blame] | 100 | <groupId>org.onosproject</groupId> |
| 101 | <artifactId>onos-core-serializers</artifactId> |
| 102 | <version>${project.version}</version> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
Naoki Shiota | 03c29e1 | 2016-05-16 16:58:07 -0700 | [diff] [blame] | 106 | <groupId>com.google.guava</groupId> |
| 107 | <artifactId>guava-testlib</artifactId> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.onosproject</groupId> |
| 113 | <artifactId>onlab-junit</artifactId> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | |
Marc De Leenheer | 552eeb6 | 2017-05-15 17:43:27 -0700 | [diff] [blame] | 117 | <dependency> |
| 118 | <groupId>org.onosproject</groupId> |
| 119 | <artifactId>onlab-osgi</artifactId> |
| 120 | <classifier>tests</classifier> |
| 121 | <scope>test</scope> |
| 122 | </dependency> |
| 123 | |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 124 | </dependencies> |
| 125 | |
| 126 | <build> |
| 127 | <pluginManagement> |
| 128 | <plugins> |
| 129 | <plugin> |
| 130 | <groupId>org.apache.karaf.tooling</groupId> |
| 131 | <artifactId>karaf-maven-plugin</artifactId> |
| 132 | <extensions>true</extensions> |
| 133 | </plugin> |
| 134 | </plugins> |
| 135 | </pluginManagement> |
| 136 | <plugins> |
| 137 | <plugin> |
| 138 | <groupId>org.apache.felix</groupId> |
| 139 | <artifactId>maven-bundle-plugin</artifactId> |
| 140 | <extensions>true</extensions> |
| 141 | </plugin> |
| 142 | <plugin> |
| 143 | <groupId>org.apache.maven.plugins</groupId> |
| 144 | <artifactId>maven-compiler-plugin</artifactId> |
| 145 | <configuration> |
| 146 | <source>1.8</source> |
| 147 | <target>1.8</target> |
| 148 | </configuration> |
| 149 | </plugin> |
| 150 | <plugin> |
| 151 | <groupId>org.apache.felix</groupId> |
| 152 | <artifactId>maven-scr-plugin</artifactId> |
| 153 | <executions> |
| 154 | <execution> |
| 155 | <id>generate-scr-srcdescriptor</id> |
| 156 | <goals> |
| 157 | <goal>scr</goal> |
| 158 | </goals> |
| 159 | </execution> |
| 160 | </executions> |
| 161 | <configuration> |
| 162 | <supportedProjectTypes> |
| 163 | <supportedProjectType>bundle</supportedProjectType> |
| 164 | <supportedProjectType>war</supportedProjectType> |
| 165 | </supportedProjectTypes> |
| 166 | </configuration> |
| 167 | </plugin> |
| 168 | <plugin> |
| 169 | <groupId>org.onosproject</groupId> |
| 170 | <artifactId>onos-maven-plugin</artifactId> |
Naoki Shiota | 5a05606 | 2016-05-05 18:43:59 -0700 | [diff] [blame] | 171 | </plugin> |
| 172 | </plugins> |
| 173 | </build> |
| 174 | |
| 175 | </project> |