blob: 40b56d069659b0ec0a0a7676992d9930efd7789c [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>
Andrew Brown58191872016-02-05 22:16:57 -080022 <developer>
23 <name>Alexander Afanasyev</name>
24 <email>aa@cs.ucla.edu</email>
25 </developer>
andrewsbrownc7693192015-02-23 10:14:11 -080026 </developers>
27 <scm>
28 <url>https://github.com/01org/jndn-mock</url>
29 <connection>scm:git:git@github.com:01org/jndn-mock.git</connection>
30 <developerConnection>scm:git:git@github.com:01org/jndn-mock.git</developerConnection>
31 </scm>
Andrew Browneef9b8e2015-01-21 15:26:59 -080032 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 <maven.compiler.source>1.7</maven.compiler.source>
35 <maven.compiler.target>1.7</maven.compiler.target>
36 </properties>
Andrew Browne1ebd672015-01-16 14:46:13 -080037 <dependencies>
38 <dependency>
Andrew Brownb91e6902015-02-12 09:01:50 -080039 <groupId>net.named-data</groupId>
Andrew Browne1ebd672015-01-16 14:46:13 -080040 <artifactId>jndn</artifactId>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -080041 <version>0.9</version>
Andrew Browne1ebd672015-01-16 14:46:13 -080042 </dependency>
Andrew Browne1ebd672015-01-16 14:46:13 -080043 <!-- Test dependencies -->
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -080047 <version>4.12</version>
Andrew Browne1ebd672015-01-16 14:46:13 -080048 <scope>test</scope>
49 </dependency>
50 </dependencies>
andrewsbrownbe120f42015-02-23 11:18:58 -080051 <profiles>
52 <profile>
53 <id>ossrh</id>
54 <build>
55 <plugins>
56 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-source-plugin</artifactId>
60 <version>2.4</version>
61 <executions>
62 <execution>
63 <id>attach-sources</id>
64 <goals>
65 <goal>jar-no-fork</goal>
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-javadoc-plugin</artifactId>
73 <version>2.10.1</version>
74 <executions>
75 <execution>
76 <id>attach-javadocs</id>
77 <goals>
78 <goal>jar</goal>
79 </goals>
80 </execution>
81 </executions>
andrewsbrown4f2a6ad2015-09-16 20:16:53 +010082 <configuration>
83 <additionalparam>-Xdoclint:none</additionalparam>
84 </configuration>
andrewsbrownbe120f42015-02-23 11:18:58 -080085 </plugin>
86 <plugin>
87 <groupId>org.sonatype.plugins</groupId>
88 <artifactId>nexus-staging-maven-plugin</artifactId>
89 <version>1.6.3</version>
90 <extensions>true</extensions>
91 <configuration>
92 <serverId>ossrh</serverId>
93 <stagingProfileId>a80137db01223a</stagingProfileId>
94 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
95 <autoReleaseAfterClose>true</autoReleaseAfterClose>
96 </configuration>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-gpg-plugin</artifactId>
101 <version>1.5</version>
102 <executions>
103 <execution>
104 <id>sign-artifacts</id>
105 <phase>verify</phase>
106 <goals>
107 <goal>sign</goal>
108 </goals>
109 </execution>
110 </executions>
111 </plugin>
112 </plugins>
113 </build>
114 </profile>
115 </profiles>
Alexander Afanasyev8e9330f2016-01-25 19:13:40 -0800116</project>