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