alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015-present Open Networking Laboratory |
| 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" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
Charles Chan | 38f7029 | 2016-12-14 16:14:57 -0800 | [diff] [blame] | 24 | <artifactId>onos-dependencies</artifactId> |
| 25 | <version>1.8.0</version> |
alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
Brian O'Connor | dd1ebd3 | 2016-06-24 17:00:42 -0700 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
Jonathan Hart | 92cc965 | 2016-06-07 11:23:03 -0700 | [diff] [blame] | 29 | <artifactId>cord-config</artifactId> |
alshabib | 924318e | 2017-01-04 21:28:05 -0800 | [diff] [blame] | 30 | <version>1.2-SNAPSHOT</version> |
alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 31 | <packaging>bundle</packaging> |
| 32 | |
Jonathan Hart | c6681fb | 2016-05-23 20:50:49 -0700 | [diff] [blame] | 33 | <description>CORD configuration meta application</description> |
alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 34 | |
| 35 | <properties> |
alshabib | f2b1e0d | 2016-06-02 17:12:54 -0700 | [diff] [blame] | 36 | <onos.app.name>org.opencord.config</onos.app.name> |
Charles Chan | 38f7029 | 2016-12-14 16:14:57 -0800 | [diff] [blame] | 37 | <onos.version>1.8.0</onos.version> |
Jonathan Hart | 92cc965 | 2016-06-07 11:23:03 -0700 | [diff] [blame] | 38 | <onos.app.title>CORD Configuration Meta Application</onos.app.title> |
alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 39 | <onos.app.category>Utility</onos.app.category> |
| 40 | <onos.app.url>http://opencord.org</onos.app.url> |
| 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onosproject</groupId> |
| 46 | <artifactId>onos-api</artifactId> |
alshabib | f2b1e0d | 2016-06-02 17:12:54 -0700 | [diff] [blame] | 47 | <version>${onos.version}</version> |
alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 48 | </dependency> |
| 49 | </dependencies> |
| 50 | |
alshabib | f2b1e0d | 2016-06-02 17:12:54 -0700 | [diff] [blame] | 51 | <build> |
| 52 | <plugins> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>maven-bundle-plugin</artifactId> |
| 56 | <version>3.0.1</version> |
| 57 | <extensions>true</extensions> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-compiler-plugin</artifactId> |
| 62 | <version>2.5.1</version> |
| 63 | <configuration> |
| 64 | <source>1.8</source> |
| 65 | <target>1.8</target> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>maven-scr-plugin</artifactId> |
| 71 | <version>1.21.0</version> |
| 72 | <executions> |
| 73 | <execution> |
| 74 | <id>generate-scr-srcdescriptor</id> |
| 75 | <goals> |
| 76 | <goal>scr</goal> |
| 77 | </goals> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | <configuration> |
| 81 | <supportedProjectTypes> |
| 82 | <supportedProjectType>bundle</supportedProjectType> |
| 83 | <supportedProjectType>war</supportedProjectType> |
| 84 | </supportedProjectTypes> |
| 85 | </configuration> |
| 86 | </plugin> |
Charles Chan | 38f7029 | 2016-12-14 16:14:57 -0800 | [diff] [blame] | 87 | |
alshabib | f2b1e0d | 2016-06-02 17:12:54 -0700 | [diff] [blame] | 88 | <plugin> |
| 89 | <groupId>org.onosproject</groupId> |
| 90 | <artifactId>onos-maven-plugin</artifactId> |
| 91 | <version>1.7</version> |
| 92 | <executions> |
| 93 | <execution> |
| 94 | <id>cfg</id> |
| 95 | <phase>generate-resources</phase> |
| 96 | <goals> |
| 97 | <goal>cfg</goal> |
| 98 | </goals> |
| 99 | </execution> |
| 100 | <execution> |
| 101 | <id>swagger</id> |
| 102 | <phase>generate-sources</phase> |
| 103 | <goals> |
| 104 | <goal>swagger</goal> |
| 105 | </goals> |
| 106 | </execution> |
| 107 | <execution> |
| 108 | <id>app</id> |
| 109 | <phase>package</phase> |
| 110 | <goals> |
| 111 | <goal>app</goal> |
| 112 | </goals> |
| 113 | </execution> |
| 114 | </executions> |
| 115 | </plugin> |
| 116 | </plugins> |
| 117 | </build> |
alshabib | 10f7fe8 | 2016-04-28 15:52:22 -0700 | [diff] [blame] | 118 | </project> |