blob: a572954d9f9357a99940228b22d32fd35ffa4bab [file] [log] [blame]
Andrew Brown2f1fdbf2015-01-21 10:52:29 -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">
andrewsbrown1e3bd292015-02-23 09:30:56 -08003 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.intel.jndn.management</groupId>
5 <artifactId>jndn-management</artifactId>
6 <version>0.9.1</version>
7 <name>jndn-management</name>
8 <description>Tools for managing an NDN forwarding daemon</description>
9 <url>https://github.com/01org/jndn-management</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-management</url>
andrewsbrowna43079c2015-02-23 10:04:28 -080025 <connection>scm:git:git@github.com:01org/jndn-management.git</connection>
26 <developerConnection>scm:git:git@github.com:01org/jndn-management.git</developerConnection>
andrewsbrown1e3bd292015-02-23 09:30:56 -080027 </scm>
28 <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>
33 <dependencies>
34 <dependency>
35 <groupId>net.named-data</groupId>
36 <artifactId>jndn</artifactId>
37 <version>0.3</version>
38 </dependency>
39 <dependency>
40 <groupId>com.intel.jndn.utils</groupId>
41 <artifactId>jndn-utils</artifactId>
42 <version>RELEASE</version>
43 </dependency>
44 <!-- test dependencies -->
45 <dependency>
46 <groupId>junit</groupId>
47 <artifactId>junit</artifactId>
48 <version>4.10</version>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>com.intel.jndn.mock</groupId>
53 <artifactId>jndn-mock</artifactId>
54 <version>RELEASE</version>
55 <scope>test</scope>
56 </dependency>
57 </dependencies>
58 <build>
59 <plugins>
60 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-source-plugin</artifactId>
64 <version>2.4</version>
65 <executions>
66 <execution>
67 <id>attach-sources</id>
68 <goals>
69 <goal>jar-no-fork</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-javadoc-plugin</artifactId>
77 <version>2.10.1</version>
78 <executions>
79 <execution>
80 <id>attach-javadocs</id>
81 <goals>
82 <goal>jar</goal>
83 </goals>
84 </execution>
85 </executions>
86 </plugin>
87 <plugin>
88 <groupId>org.sonatype.plugins</groupId>
89 <artifactId>nexus-staging-maven-plugin</artifactId>
90 <version>1.6.3</version>
91 <extensions>true</extensions>
92 <configuration>
93 <serverId>ossrh</serverId>
94 <stagingProfileId>a80137db01223a</stagingProfileId>
95 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
96 <autoReleaseAfterClose>true</autoReleaseAfterClose>
97 </configuration>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-gpg-plugin</artifactId>
102 <version>1.5</version>
103 <executions>
104 <execution>
105 <id>sign-artifacts</id>
106 <phase>verify</phase>
107 <goals>
108 <goal>sign</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
113 </plugins>
114 </build>
Andrew Brown2f1fdbf2015-01-21 10:52:29 -0800115</project>