Yuta HIGUCHI | 2405782 | 2017-08-02 15:03:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2017 Open Networking Foundation |
| 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> |
Ray Milkey | 0a64b86 | 2017-09-08 14:39:41 -0700 | [diff] [blame] | 23 | <version>1.11.1-SNAPSHOT</version> |
Yuta HIGUCHI | 2405782 | 2017-08-02 15:03:51 -0700 | [diff] [blame] | 24 | <relativePath>../../pom.xml</relativePath> |
| 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-apps-netconf-client</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>Dynamic Config NETCONF Device synchronizer</description> |
| 31 | <url>http://onosproject.org</url> |
| 32 | |
| 33 | <properties> |
| 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | <onos.version>${project.version}</onos.version> |
| 36 | <onos.app.name>org.onosproject.netconfsb</onos.app.name> |
| 37 | <onos.app.origin>ON.Lab</onos.app.origin> |
| 38 | <onos.app.requires>org.onosproject.yang,org.onosproject.config,org.onosproject.netconf</onos.app.requires> |
| 39 | <onos.app.category>Protocols</onos.app.category> |
| 40 | <onos.app.title>NETCONF Device Configuration</onos.app.title> |
| 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onosproject</groupId> |
| 46 | <artifactId>onos-api</artifactId> |
Yuta HIGUCHI | 2405782 | 2017-08-02 15:03:51 -0700 | [diff] [blame] | 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
| 51 | <artifactId>onos-yang-model</artifactId> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-yang-runtime</artifactId> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-apps-config</artifactId> |
| 62 | <version>${onos.version}</version> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>onos-netconf-api</artifactId> |
| 68 | <version>${onos.version}</version> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>org.slf4j</groupId> |
| 73 | <artifactId>slf4j-api</artifactId> |
| 74 | <scope>provided</scope> |
| 75 | </dependency> |
| 76 | |
| 77 | <dependency> |
| 78 | <groupId>org.onosproject</groupId> |
| 79 | <artifactId>onos-cli</artifactId> |
| 80 | <version>${onos.version}</version> |
| 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.apache.karaf.shell</groupId> |
| 85 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 86 | <scope>provided</scope> |
| 87 | </dependency> |
| 88 | |
| 89 | <dependency> |
| 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onlab-osgi</artifactId> |
Yuta HIGUCHI | 2405782 | 2017-08-02 15:03:51 -0700 | [diff] [blame] | 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.apache.felix</groupId> |
| 96 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 97 | <scope>provided</scope> |
| 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
| 101 | <groupId>org.osgi</groupId> |
| 102 | <artifactId>org.osgi.compendium</artifactId> |
| 103 | <scope>provided</scope> |
| 104 | </dependency> |
| 105 | |
| 106 | <dependency> |
| 107 | <groupId>junit</groupId> |
| 108 | <artifactId>junit</artifactId> |
| 109 | <scope>test</scope> |
| 110 | </dependency> |
| 111 | |
| 112 | <dependency> |
| 113 | <groupId>org.onosproject</groupId> |
| 114 | <artifactId>onos-api</artifactId> |
Yuta HIGUCHI | 2405782 | 2017-08-02 15:03:51 -0700 | [diff] [blame] | 115 | <scope>test</scope> |
| 116 | <classifier>tests</classifier> |
| 117 | </dependency> |
| 118 | |
Yuta HIGUCHI | 09ae368 | 2017-08-14 18:56:54 -0700 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>org.onosproject</groupId> |
| 121 | <artifactId>onlab-junit</artifactId> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | |
Yuta HIGUCHI | 2405782 | 2017-08-02 15:03:51 -0700 | [diff] [blame] | 125 | </dependencies> |
| 126 | |
| 127 | <build> |
| 128 | <pluginManagement> |
| 129 | <plugins> |
| 130 | |
| 131 | <plugin> |
| 132 | <groupId>org.apache.karaf.tooling</groupId> |
| 133 | <artifactId>karaf-maven-plugin</artifactId> |
| 134 | <version>3.0.5</version> |
| 135 | <extensions>true</extensions> |
| 136 | </plugin> |
| 137 | |
| 138 | </plugins> |
| 139 | </pluginManagement> |
| 140 | |
| 141 | <plugins> |
| 142 | <plugin> |
| 143 | <groupId>org.apache.felix</groupId> |
| 144 | <artifactId>maven-bundle-plugin</artifactId> |
| 145 | <extensions>true</extensions> |
| 146 | </plugin> |
| 147 | |
| 148 | <plugin> |
| 149 | <groupId>org.apache.maven.plugins</groupId> |
| 150 | <artifactId>maven-compiler-plugin</artifactId> |
| 151 | </plugin> |
| 152 | |
| 153 | <plugin> |
| 154 | <groupId>org.apache.felix</groupId> |
| 155 | <artifactId>maven-scr-plugin</artifactId> |
| 156 | <executions> |
| 157 | <execution> |
| 158 | <id>generate-scr-srcdescriptor</id> |
| 159 | <goals> |
| 160 | <goal>scr</goal> |
| 161 | </goals> |
| 162 | </execution> |
| 163 | </executions> |
| 164 | <configuration> |
| 165 | <supportedProjectTypes> |
| 166 | <supportedProjectType>bundle</supportedProjectType> |
| 167 | <supportedProjectType>war</supportedProjectType> |
| 168 | </supportedProjectTypes> |
| 169 | </configuration> |
| 170 | </plugin> |
| 171 | |
| 172 | <plugin> |
| 173 | <groupId>org.onosproject</groupId> |
| 174 | <artifactId>onos-maven-plugin</artifactId> |
| 175 | <executions> |
| 176 | <execution> |
| 177 | <id>cfg</id> |
| 178 | <phase>generate-resources</phase> |
| 179 | <goals> |
| 180 | <goal>cfg</goal> |
| 181 | </goals> |
| 182 | </execution> |
| 183 | <execution> |
| 184 | <id>swagger</id> |
| 185 | <phase>generate-sources</phase> |
| 186 | <goals> |
| 187 | <goal>swagger</goal> |
| 188 | </goals> |
| 189 | </execution> |
| 190 | <execution> |
| 191 | <id>app</id> |
| 192 | <phase>package</phase> |
| 193 | <goals> |
| 194 | <goal>app</goal> |
| 195 | </goals> |
| 196 | </execution> |
| 197 | </executions> |
| 198 | </plugin> |
| 199 | |
| 200 | </plugins> |
| 201 | </build> |
| 202 | |
| 203 | </project> |