blob: ae24a8f447cc6100d1a98f5343d52d61683b61b9 [file] [log] [blame]
Andrew Brown3f2521a2015-01-17 22:10:15 -08001<?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 Brownac282262015-01-20 16:14:43 -08004 <groupId>com.intel.jndn.utils</groupId>
Andrew Brown3f2521a2015-01-17 22:10:15 -08005 <artifactId>jndn-utils</artifactId>
Andrew Browna88e6ef2015-01-22 11:43:44 -08006 <version>0.9.3</version>
andrewsbrown8372eaa2015-02-23 10:08:17 -08007 <name>jndn-utils</name>
Andrew Browna88e6ef2015-01-22 11:43:44 -08008 <description>Collection of tools to simplify synchronous and asynchronous data transfer over the NDN network</description>
andrewsbrown8372eaa2015-02-23 10:08:17 -08009 <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 Brown3f2521a2015-01-17 22:10:15 -080028 <dependencies>
29 <dependency>
Andrew Browndb457052015-02-21 15:41:58 -080030 <groupId>net.named-data</groupId>
Andrew Brown3f2521a2015-01-17 22:10:15 -080031 <artifactId>jndn</artifactId>
Andrew Browndb457052015-02-21 15:41:58 -080032 <version>0.3</version>
Andrew Brown3f2521a2015-01-17 22:10:15 -080033 </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 Browndb457052015-02-21 15:41:58 -080044 <version>RELEASE</version>
Andrew Brown3f2521a2015-01-17 22:10:15 -080045 <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>
andrewsbrown8372eaa2015-02-23 10:08:17 -080053 <build>
54 <plugins>
55 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-source-plugin</artifactId>
59 <version>2.4</version>
60 <executions>
61 <execution>
62 <id>attach-sources</id>
63 <goals>
64 <goal>jar-no-fork</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-javadoc-plugin</artifactId>
72 <version>2.10.1</version>
73 <executions>
74 <execution>
75 <id>attach-javadocs</id>
76 <goals>
77 <goal>jar</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
83 <groupId>org.sonatype.plugins</groupId>
84 <artifactId>nexus-staging-maven-plugin</artifactId>
85 <version>1.6.3</version>
86 <extensions>true</extensions>
87 <configuration>
88 <serverId>ossrh</serverId>
89 <stagingProfileId>a80137db01223a</stagingProfileId>
90 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
91 <autoReleaseAfterClose>true</autoReleaseAfterClose>
92 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-gpg-plugin</artifactId>
97 <version>1.5</version>
98 <executions>
99 <execution>
100 <id>sign-artifacts</id>
101 <phase>verify</phase>
102 <goals>
103 <goal>sign</goal>
104 </goals>
105 </execution>
106 </executions>
107 </plugin>
108 </plugins>
109 </build>
Andrew Brown3f2521a2015-01-17 22:10:15 -0800110</project>