blob: df72e2e8b362e96b9fe152a5950c6b6c2aae80f4 [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>
andrewsbrown4c21ea22015-03-09 12:05:03 -07006 <version>0.9.3</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -08007 <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>
andrewsbrown8450e892015-02-23 11:17:22 -080058 <profiles>
59 <profile>
60 <id>ossrh</id>
61 <build>
62 <plugins>
63 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-source-plugin</artifactId>
67 <version>2.4</version>
68 <executions>
69 <execution>
70 <id>attach-sources</id>
71 <goals>
72 <goal>jar-no-fork</goal>
73 </goals>
74 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-javadoc-plugin</artifactId>
80 <version>2.10.1</version>
81 <executions>
82 <execution>
83 <id>attach-javadocs</id>
84 <goals>
85 <goal>jar</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 <plugin>
91 <groupId>org.sonatype.plugins</groupId>
92 <artifactId>nexus-staging-maven-plugin</artifactId>
93 <version>1.6.3</version>
94 <extensions>true</extensions>
95 <configuration>
96 <serverId>ossrh</serverId>
97 <stagingProfileId>a80137db01223a</stagingProfileId>
98 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
99 <autoReleaseAfterClose>true</autoReleaseAfterClose>
100 </configuration>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-gpg-plugin</artifactId>
105 <version>1.5</version>
106 <executions>
107 <execution>
108 <id>sign-artifacts</id>
109 <phase>verify</phase>
110 <goals>
111 <goal>sign</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116 </plugins>
117 </build>
118 </profile>
119 </profiles>
Andrew Brown2f1fdbf2015-01-21 10:52:29 -0800120</project>