Jimmy Yan | da878fc | 2016-09-02 16:32:01 -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 |
Jimmy Yan | da878fc | 2016-09-02 16:32:01 -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 | --><project xmlns="http://maven.apache.org/POM/4.0.0" |
| 17 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-apps</artifactId> |
ONOS Jenkins User | 9172e40 | 2018-07-13 20:32:12 +0000 | [diff] [blame^] | 24 | <version>1.12.1</version> |
Jimmy Yan | da878fc | 2016-09-02 16:32:01 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-apps-roadm</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>Application for ROADM device management</description> |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <properties> |
| 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Yuta HIGUCHI | 41675d2 | 2017-01-12 11:50:39 -0800 | [diff] [blame] | 35 | <onos.version>${project.version}</onos.version> |
Jimmy Yan | da878fc | 2016-09-02 16:32:01 -0700 | [diff] [blame] | 36 | <onos.app.name>org.onosproject.roadm</onos.app.name> |
| 37 | <onos.app.title>ROADM Application</onos.app.title> |
| 38 | <onos.app.category>Utility</onos.app.category> |
| 39 | <onos.app.readme> |
| 40 | This application provides an interface and web GUI for monitoring |
| 41 | and configuring power on ROADM devices. |
| 42 | </onos.app.readme> |
| 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-api</artifactId> |
| 49 | <version>${onos.version}</version> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onos-core-serializers</artifactId> |
| 55 | <version>${onos.version}</version> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onlab-osgi</artifactId> |
Jimmy Yan | da878fc | 2016-09-02 16:32:01 -0700 | [diff] [blame] | 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-optical-model</artifactId> |
| 66 | <version>${onos.version}</version> |
| 67 | </dependency> |
| 68 | |
| 69 | <dependency> |
| 70 | <groupId>junit</groupId> |
| 71 | <artifactId>junit</artifactId> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
| 76 | <groupId>org.onosproject</groupId> |
| 77 | <artifactId>onos-api</artifactId> |
Jimmy Yan | da878fc | 2016-09-02 16:32:01 -0700 | [diff] [blame] | 78 | <scope>test</scope> |
| 79 | <classifier>tests</classifier> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>org.apache.felix</groupId> |
| 84 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 85 | <scope>provided</scope> |
| 86 | </dependency> |
| 87 | </dependencies> |
| 88 | |
| 89 | <build> |
| 90 | <plugins> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.felix</groupId> |
| 93 | <artifactId>maven-bundle-plugin</artifactId> |
| 94 | <extensions>true</extensions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
| 98 | <artifactId>maven-compiler-plugin</artifactId> |
| 99 | </plugin> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
| 102 | <artifactId>maven-scr-plugin</artifactId> |
| 103 | <executions> |
| 104 | <execution> |
| 105 | <id>generate-scr-srcdescriptor</id> |
| 106 | <goals> |
| 107 | <goal>scr</goal> |
| 108 | </goals> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | <configuration> |
| 112 | <supportedProjectTypes> |
| 113 | <supportedProjectType>bundle</supportedProjectType> |
| 114 | <supportedProjectType>war</supportedProjectType> |
| 115 | </supportedProjectTypes> |
| 116 | </configuration> |
| 117 | </plugin> |
| 118 | <plugin> |
| 119 | <groupId>org.onosproject</groupId> |
| 120 | <artifactId>onos-maven-plugin</artifactId> |
| 121 | <executions> |
| 122 | <execution> |
| 123 | <id>cfg</id> |
| 124 | <phase>generate-resources</phase> |
| 125 | <goals> |
| 126 | <goal>cfg</goal> |
| 127 | </goals> |
| 128 | </execution> |
| 129 | <execution> |
| 130 | <id>swagger</id> |
| 131 | <phase>generate-sources</phase> |
| 132 | <goals> |
| 133 | <goal>swagger</goal> |
| 134 | </goals> |
| 135 | </execution> |
| 136 | <execution> |
| 137 | <id>app</id> |
| 138 | <phase>package</phase> |
| 139 | <goals> |
| 140 | <goal>app</goal> |
| 141 | </goals> |
| 142 | </execution> |
| 143 | </executions> |
| 144 | </plugin> |
| 145 | </plugins> |
| 146 | </build> |
| 147 | |
| 148 | </project> |