tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onlab.onos</groupId> |
| 9 | <artifactId>onos</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
tom | e2dc27a | 2014-09-09 12:41:21 -0700 | [diff] [blame] | 14 | <artifactId>onos-core</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <description>ONOS Core root project</description> |
| 18 | |
| 19 | <modules> |
| 20 | <module>api</module> |
tom | ab0af29 | 2014-09-19 13:04:54 -0700 | [diff] [blame] | 21 | <module>net</module> |
| 22 | <module>store</module> |
Thomas Vachuska | 0a608ac | 2014-10-16 11:15:59 -0700 | [diff] [blame] | 23 | <module>json</module> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 24 | </modules> |
| 25 | |
| 26 | <dependencies> |
| 27 | <dependency> |
| 28 | <groupId>com.google.guava</groupId> |
| 29 | <artifactId>guava</artifactId> |
| 30 | </dependency> |
tom | 5f38b3a | 2014-08-27 23:50:54 -0700 | [diff] [blame] | 31 | <dependency> |
| 32 | <groupId>org.onlab.onos</groupId> |
| 33 | <artifactId>onlab-misc</artifactId> |
| 34 | </dependency> |
tom | 931af4e | 2014-09-13 12:00:57 -0700 | [diff] [blame] | 35 | <dependency> |
| 36 | <groupId>org.onlab.onos</groupId> |
| 37 | <artifactId>onlab-junit</artifactId> |
| 38 | </dependency> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 39 | </dependencies> |
| 40 | |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.apache.felix</groupId> |
| 45 | <artifactId>maven-bundle-plugin</artifactId> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | |
| 50 | </project> |