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 | a450fad | 2015-01-22 11:24:40 -0800 | [diff] [blame^] | 6 | <version>0.9.2</version> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 7 | <packaging>jar</packaging> |
Andrew Brown | ac28226 | 2015-01-20 16:14:43 -0800 | [diff] [blame] | 8 | <description>Collection of tools to simplify synchronous and asynchronous requests over the NDN network</description> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 9 | <dependencies> |
| 10 | <dependency> |
| 11 | <groupId>net.named_data.jndn</groupId> |
| 12 | <artifactId>jndn</artifactId> |
| 13 | <version>RELEASE</version> |
| 14 | </dependency> |
| 15 | <dependency> |
| 16 | <groupId>org.apache.logging.log4j</groupId> |
| 17 | <artifactId>log4j-api</artifactId> |
| 18 | <version>2.1</version> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>org.apache.logging.log4j</groupId> |
| 22 | <artifactId>log4j-core</artifactId> |
| 23 | <version>2.1</version> |
| 24 | </dependency> |
| 25 | <!-- Test dependencies --> |
| 26 | <dependency> |
| 27 | <groupId>junit</groupId> |
| 28 | <artifactId>junit</artifactId> |
| 29 | <version>4.10</version> |
| 30 | <scope>test</scope> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>com.intel.jndn.mock</groupId> |
| 34 | <artifactId>jndn-mock</artifactId> |
| 35 | <version>0.9</version> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
| 38 | </dependencies> |
| 39 | <properties> |
| 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 41 | <maven.compiler.source>1.7</maven.compiler.source> |
| 42 | <maven.compiler.target>1.7</maven.compiler.target> |
| 43 | </properties> |
| 44 | <distributionManagement> |
| 45 | <repository> |
| 46 | <id>ubit-artifactory-or.intel.com</id> |
| 47 | <name>ubit-artifactory-or.intel.com-releases</name> |
| 48 | <url>https://ubit-artifactory-or.intel.com/artifactory/libs-snapshot-local</url> |
| 49 | </repository> |
| 50 | <snapshotRepository> |
| 51 | <id>ubit-artifactory-or.intel.com</id> |
| 52 | <name>ubit-artifactory-or.intel.com-snapshots</name> |
| 53 | <url>https://ubit-artifactory-or.intel.com/artifactory/libs-snapshot-local</url> |
| 54 | </snapshotRepository> |
| 55 | </distributionManagement> |
| 56 | </project> |