blob: 4cf4bd3c1e6a5352127c729846c561449a23995d [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>
andrewsbrowna4c12ba2015-02-24 09:11:59 -08006 <version>0.9.4</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>
andrewsbrown7836a5f2015-02-23 11:20:10 -080053 <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 Brown3f2521a2015-01-17 22:10:15 -0800115</project>