blob: 0f36b5b4a3437f84550696982f9aa3410eda19b0 [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>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -08006 <version>1.0.1-SNAPSHOT</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>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -080037 <version>0.9</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>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -080043 <version>4.12</version>
Andrew Browne1ebd672015-01-16 14:46:13 -080044 <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>
andrewsbrown4f2a6ad2015-09-16 20:16:53 +010078 <configuration>
79 <additionalparam>-Xdoclint:none</additionalparam>
80 </configuration>
andrewsbrownbe120f42015-02-23 11:18:58 -080081 </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>
110 </profile>
111 </profiles>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -0800112</project>