blob: d4a6242e997b26752b827da5efab47d7cbf57eb2 [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>
Andrew Brownb91e6902015-02-12 09:01:50 -08006 <version>0.9.2</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>
andrewsbrownc7693192015-02-23 10:14:11 -080037 <version>0.3</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>
andrewsbrownc7693192015-02-23 10:14:11 -080047 <build>
48 <plugins>
49 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-source-plugin</artifactId>
53 <version>2.4</version>
54 <executions>
55 <execution>
56 <id>attach-sources</id>
57 <goals>
58 <goal>jar-no-fork</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-javadoc-plugin</artifactId>
66 <version>2.10.1</version>
67 <executions>
68 <execution>
69 <id>attach-javadocs</id>
70 <goals>
71 <goal>jar</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <groupId>org.sonatype.plugins</groupId>
78 <artifactId>nexus-staging-maven-plugin</artifactId>
79 <version>1.6.3</version>
80 <extensions>true</extensions>
81 <configuration>
82 <serverId>ossrh</serverId>
83 <stagingProfileId>a80137db01223a</stagingProfileId>
84 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
85 <autoReleaseAfterClose>true</autoReleaseAfterClose>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-gpg-plugin</artifactId>
91 <version>1.5</version>
92 <executions>
93 <execution>
94 <id>sign-artifacts</id>
95 <phase>verify</phase>
96 <goals>
97 <goal>sign</goal>
98 </goals>
99 </execution>
100 </executions>
101 </plugin>
102 </plugins>
103 </build>
Andrew Browne1ebd672015-01-16 14:46:13 -0800104</project>