blob: 9bd5788479772af198841241e8df737b564c890b [file] [log] [blame]
Andrew Browne1ebd672015-01-16 14:46:13 -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>
4 <groupId>com.intel.jndn.mock</groupId>
5 <artifactId>jndn-mock</artifactId>
andrewsbrown1804a4a2015-03-09 18:24:11 -07006 <version>0.9.4</version>
andrewsbrownc7693192015-02-23 10:14:11 -08007 <name>jndn-mock</name>
Andrew Brownec1b0d02015-02-21 13:11:42 -08008 <description>Tools for testing NDN Java code without using network IO.</description>
andrewsbrownc7693192015-02-23 10:14:11 -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-mock</url>
25 <connection>scm:git:git@github.com:01org/jndn-mock.git</connection>
26 <developerConnection>scm:git:git@github.com:01org/jndn-mock.git</developerConnection>
27 </scm>
Andrew Browneef9b8e2015-01-21 15:26:59 -080028 <properties>
29 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30 <maven.compiler.source>1.7</maven.compiler.source>
31 <maven.compiler.target>1.7</maven.compiler.target>
32 </properties>
Andrew Browne1ebd672015-01-16 14:46:13 -080033 <dependencies>
34 <dependency>
Andrew Brownb91e6902015-02-12 09:01:50 -080035 <groupId>net.named-data</groupId>
Andrew Browne1ebd672015-01-16 14:46:13 -080036 <artifactId>jndn</artifactId>
andrewsbrown1804a4a2015-03-09 18:24:11 -070037 <version>RELEASE</version>
Andrew Browne1ebd672015-01-16 14:46:13 -080038 </dependency>
Andrew Browne1ebd672015-01-16 14:46:13 -080039 <!-- Test dependencies -->
40 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
43 <version>4.10</version>
44 <scope>test</scope>
45 </dependency>
46 </dependencies>
andrewsbrownbe120f42015-02-23 11:18:58 -080047 <profiles>
48 <profile>
49 <id>ossrh</id>
50 <build>
51 <plugins>
52 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-source-plugin</artifactId>
56 <version>2.4</version>
57 <executions>
58 <execution>
59 <id>attach-sources</id>
60 <goals>
61 <goal>jar-no-fork</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-javadoc-plugin</artifactId>
69 <version>2.10.1</version>
70 <executions>
71 <execution>
72 <id>attach-javadocs</id>
73 <goals>
74 <goal>jar</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.sonatype.plugins</groupId>
81 <artifactId>nexus-staging-maven-plugin</artifactId>
82 <version>1.6.3</version>
83 <extensions>true</extensions>
84 <configuration>
85 <serverId>ossrh</serverId>
86 <stagingProfileId>a80137db01223a</stagingProfileId>
87 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
88 <autoReleaseAfterClose>true</autoReleaseAfterClose>
89 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-gpg-plugin</artifactId>
94 <version>1.5</version>
95 <executions>
96 <execution>
97 <id>sign-artifacts</id>
98 <phase>verify</phase>
99 <goals>
100 <goal>sign</goal>
101 </goals>
102 </execution>
103 </executions>
104 </plugin>
105 </plugins>
106 </build>
107 </profile>
108 </profiles>
Andrew Browne1ebd672015-01-16 14:46:13 -0800109</project>