Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 23c7e32 | 2017-08-03 18:48:27 -0700 | [diff] [blame] | 2 | ~ Copyright 2016-present Open Networking Foundation |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 3 | ~ |
| 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
| 7 | ~ |
| 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
| 15 | --> |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 16 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 17 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 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-base</artifactId> |
| 24 | <version>1</version> |
| 25 | </parent> |
| 26 | |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 27 | <artifactId>onos-app-nemo</artifactId> |
| 28 | <version>1.7.0-SNAPSHOT</version> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 29 | <packaging>pom</packaging> |
| 30 | |
| 31 | <properties> |
| 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 33 | <onos.version>1.7.0</onos.version> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 34 | </properties> |
| 35 | |
| 36 | <modules> |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 37 | <module>nemoengine</module> |
| 38 | <module>nemoweb</module> |
| 39 | <module>app</module> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 40 | </modules> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>com.google.guava</groupId> |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 45 | <artifactId>guava-testlib</artifactId> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 46 | <version>19.0</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.osgi</groupId> |
| 50 | <artifactId>org.osgi.compendium</artifactId> |
| 51 | <version>5.0.0</version> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onlab-junit</artifactId> |
| 57 | <version>${onos.version}</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.easymock</groupId> |
| 62 | <artifactId>easymock</artifactId> |
| 63 | <version>3.4</version> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 69 | <version>1.9.12</version> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.slf4j</groupId> |
| 74 | <artifactId>slf4j-api</artifactId> |
| 75 | <version>1.7.21</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.onosproject</groupId> |
| 79 | <artifactId>onos-core-common</artifactId> |
| 80 | <version>${onos.version}</version> |
| 81 | </dependency> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 82 | </dependencies> |
| 83 | |
| 84 | <build> |
anjiaqi1234567 | 82a3c5a | 2016-10-11 15:57:50 +0800 | [diff] [blame] | 85 | <plugins> |
| 86 | <plugin> |
| 87 | <groupId>org.apache.felix</groupId> |
| 88 | <artifactId>maven-bundle-plugin</artifactId> |
| 89 | <version>2.3.7</version> |
| 90 | <extensions>true</extensions> |
| 91 | </plugin> |
| 92 | |
| 93 | <plugin> |
| 94 | <groupId>org.onosproject</groupId> |
| 95 | <artifactId>onos-maven-plugin</artifactId> |
| 96 | <version>1.10</version> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <id>app</id> |
| 100 | <phase>package</phase> |
| 101 | <goals> |
| 102 | <goal>app</goal> |
| 103 | </goals> |
| 104 | </execution> |
| 105 | </executions> |
| 106 | </plugin> |
| 107 | </plugins> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 108 | <pluginManagement> |
| 109 | <plugins> |
| 110 | <plugin> |
| 111 | <groupId>org.apache.maven.plugins</groupId> |
| 112 | <artifactId>maven-compiler-plugin</artifactId> |
| 113 | <version>3.5.1</version> |
| 114 | <configuration> |
| 115 | <source>1.8</source> |
| 116 | <target>1.8</target> |
| 117 | </configuration> |
Thomas Vachuska | ec64c1f | 2016-08-30 09:44:42 -0700 | [diff] [blame] | 118 | </plugin> |
| 119 | </plugins> |
| 120 | </pluginManagement> |
| 121 | </build> |
| 122 | </project> |