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> |
andrewsbrown | 7792cfa | 2015-03-17 20:09:00 +0100 | [diff] [blame] | 6 | <version>0.9.7</version> |
andrewsbrown | 8372eaa | 2015-02-23 10:08:17 -0800 | [diff] [blame] | 7 | <name>jndn-utils</name> |
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> |
andrewsbrown | 8372eaa | 2015-02-23 10:08:17 -0800 | [diff] [blame] | 9 | <url>https://github.com/01org/jndn-utils</url> |
| 10 | <packaging>jar</packaging> |
| 11 | <licenses> |
| 12 | <license> |
| 13 | <name>LGPL v3</name> |
| 14 | <url>https://www.gnu.org/licenses/lgpl.html</url> |
| 15 | </license> |
| 16 | </licenses> |
| 17 | <developers> |
| 18 | <developer> |
| 19 | <name>Andrew Brown</name> |
| 20 | <url>http://github.com/andrewsbrown</url> |
| 21 | </developer> |
| 22 | </developers> |
| 23 | <scm> |
| 24 | <url>https://github.com/01org/jndn-utils</url> |
| 25 | <connection>scm:git:git@github.com:01org/jndn-utils.git</connection> |
| 26 | <developerConnection>scm:git:git@github.com:01org/jndn-utils.git</developerConnection> |
| 27 | </scm> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 28 | <dependencies> |
| 29 | <dependency> |
Andrew Brown | db45705 | 2015-02-21 15:41:58 -0800 | [diff] [blame] | 30 | <groupId>net.named-data</groupId> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 31 | <artifactId>jndn</artifactId> |
andrewsbrown | 3ecf664 | 2015-03-09 18:25:53 -0700 | [diff] [blame] | 32 | <version>RELEASE</version> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 33 | </dependency> |
| 34 | <!-- Test dependencies --> |
| 35 | <dependency> |
| 36 | <groupId>junit</groupId> |
| 37 | <artifactId>junit</artifactId> |
| 38 | <version>4.10</version> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>com.intel.jndn.mock</groupId> |
| 43 | <artifactId>jndn-mock</artifactId> |
Andrew Brown | db45705 | 2015-02-21 15:41:58 -0800 | [diff] [blame] | 44 | <version>RELEASE</version> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | </dependencies> |
| 48 | <properties> |
| 49 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 50 | <maven.compiler.source>1.7</maven.compiler.source> |
| 51 | <maven.compiler.target>1.7</maven.compiler.target> |
| 52 | </properties> |
andrewsbrown | 7836a5f | 2015-02-23 11:20:10 -0800 | [diff] [blame] | 53 | <profiles> |
| 54 | <profile> |
| 55 | <id>ossrh</id> |
| 56 | <build> |
| 57 | <plugins> |
| 58 | <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) --> |
| 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-source-plugin</artifactId> |
| 62 | <version>2.4</version> |
| 63 | <executions> |
| 64 | <execution> |
| 65 | <id>attach-sources</id> |
| 66 | <goals> |
| 67 | <goal>jar-no-fork</goal> |
| 68 | </goals> |
| 69 | </execution> |
| 70 | </executions> |
| 71 | </plugin> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | <artifactId>maven-javadoc-plugin</artifactId> |
| 75 | <version>2.10.1</version> |
| 76 | <executions> |
| 77 | <execution> |
| 78 | <id>attach-javadocs</id> |
| 79 | <goals> |
| 80 | <goal>jar</goal> |
| 81 | </goals> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <groupId>org.sonatype.plugins</groupId> |
| 87 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 88 | <version>1.6.3</version> |
| 89 | <extensions>true</extensions> |
| 90 | <configuration> |
| 91 | <serverId>ossrh</serverId> |
| 92 | <stagingProfileId>a80137db01223a</stagingProfileId> |
| 93 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 94 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 95 | </configuration> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-gpg-plugin</artifactId> |
| 100 | <version>1.5</version> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <id>sign-artifacts</id> |
| 104 | <phase>verify</phase> |
| 105 | <goals> |
| 106 | <goal>sign</goal> |
| 107 | </goals> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | </plugin> |
| 111 | </plugins> |
| 112 | </build> |
| 113 | </profile> |
| 114 | </profiles> |
Andrew Brown | 3f2521a | 2015-01-17 22:10:15 -0800 | [diff] [blame] | 115 | </project> |