Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
Andrew Brown | ac28226 | 2015-01-20 16:14:43 -0800 | [diff] [blame] | 4 | <groupId>com.intel.jndn.utils</groupId> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 5 | <artifactId>jndn-utils</artifactId> |
Andrew Brown | a88e6ef | 2015-01-22 11:43:44 -0800 | [diff] [blame] | 6 | <version>0.9.3</version> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 7 | <packaging>jar</packaging> |
Andrew Brown | a88e6ef | 2015-01-22 11:43:44 -0800 | [diff] [blame] | 8 | <description>Collection of tools to simplify synchronous and asynchronous data transfer over the NDN network</description> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 9 | <dependencies> |
| 10 | <dependency> |
Andrew Brown | db45705 | 2015-02-21 15:41:58 -0800 | [diff] [blame] | 11 | <groupId>net.named-data</groupId> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 12 | <artifactId>jndn</artifactId> |
Andrew Brown | db45705 | 2015-02-21 15:41:58 -0800 | [diff] [blame] | 13 | <version>0.3</version> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 14 | </dependency> |
| 15 | <!-- Test dependencies --> |
| 16 | <dependency> |
| 17 | <groupId>junit</groupId> |
| 18 | <artifactId>junit</artifactId> |
| 19 | <version>4.10</version> |
| 20 | <scope>test</scope> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>com.intel.jndn.mock</groupId> |
| 24 | <artifactId>jndn-mock</artifactId> |
Andrew Brown | db45705 | 2015-02-21 15:41:58 -0800 | [diff] [blame] | 25 | <version>RELEASE</version> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 26 | <scope>test</scope> |
| 27 | </dependency> |
| 28 | </dependencies> |
| 29 | <properties> |
| 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 31 | <maven.compiler.source>1.7</maven.compiler.source> |
| 32 | <maven.compiler.target>1.7</maven.compiler.target> |
| 33 | </properties> |
Andrew Brown | a38a139 | 2015-01-22 16:32:00 -0800 | [diff] [blame] | 34 | <repositories> |
| 35 | <repository> |
| 36 | <id>ubit-artifactory-or.intel.com</id> |
| 37 | <name>IT Artifactory (libs)</name> |
| 38 | <url>https://ubit-artifactory-or.intel.com/artifactory/libs-release-local</url> |
| 39 | </repository> |
Tim Coppernoll | 4898e24 | 2015-01-28 13:18:10 -0800 | [diff] [blame] | 40 | <repository> |
| 41 | <id>ubit-artifactory-or.intel.com-ext</id> |
| 42 | <name>IT Artifactory (ext)</name> |
| 43 | <url>https://ubit-artifactory-or.intel.com/artifactory/ext-releases-local</url> |
| 44 | </repository> |
Andrew Brown | a38a139 | 2015-01-22 16:32:00 -0800 | [diff] [blame] | 45 | </repositories> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 46 | <distributionManagement> |
| 47 | <repository> |
| 48 | <id>ubit-artifactory-or.intel.com</id> |
| 49 | <name>ubit-artifactory-or.intel.com-releases</name> |
Andrew Brown | 69a5cd3 | 2015-01-22 15:42:44 -0800 | [diff] [blame] | 50 | <url>https://ubit-artifactory-or.intel.com/artifactory/libs-release-local</url> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 51 | </repository> |
| 52 | <snapshotRepository> |
| 53 | <id>ubit-artifactory-or.intel.com</id> |
| 54 | <name>ubit-artifactory-or.intel.com-snapshots</name> |
| 55 | <url>https://ubit-artifactory-or.intel.com/artifactory/libs-snapshot-local</url> |
| 56 | </snapshotRepository> |
| 57 | </distributionManagement> |
| 58 | </project> |