blob: 731071f55cf8390a965c7f76b1ce228d513e6c42 [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>
andrewsbrownbb2cc222015-09-04 23:05:24 +01006 <version>1.0.0</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>
Alexander Afanasyevccb373d2016-01-25 11:28:18 -080022 <developer>
23 <name>Alexander Afanasyev</name>
24 <email>aa@cs.ucla.edu</email>
25 </developer>
andrewsbrown1e3bd292015-02-23 09:30:56 -080026 </developers>
27 <scm>
28 <url>https://github.com/01org/jndn-management</url>
andrewsbrowna43079c2015-02-23 10:04:28 -080029 <connection>scm:git:git@github.com:01org/jndn-management.git</connection>
30 <developerConnection>scm:git:git@github.com:01org/jndn-management.git</developerConnection>
andrewsbrown1e3bd292015-02-23 09:30:56 -080031 </scm>
32 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Alexander Afanasyevf1cc52c2016-01-25 10:50:46 -080034 <maven.compiler.source>1.7</maven.compiler.source>
35 <maven.compiler.target>1.7</maven.compiler.target>
andrewsbrown1e3bd292015-02-23 09:30:56 -080036 </properties>
37 <dependencies>
38 <dependency>
39 <groupId>net.named-data</groupId>
40 <artifactId>jndn</artifactId>
Alexander Afanasyevccb373d2016-01-25 11:28:18 -080041 <version>0.10</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -080042 </dependency>
andrewsbrown1e3bd292015-02-23 09:30:56 -080043 <!-- test dependencies -->
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
Alexander Afanasyevccb373d2016-01-25 11:28:18 -080047 <version>4.12</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -080048 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>com.intel.jndn.mock</groupId>
52 <artifactId>jndn-mock</artifactId>
Alexander Afanasyevccb373d2016-01-25 11:28:18 -080053 <version>1.0.1</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -080054 <scope>test</scope>
55 </dependency>
56 </dependencies>
andrewsbrown8450e892015-02-23 11:17:22 -080057 <profiles>
58 <profile>
59 <id>ossrh</id>
60 <build>
61 <plugins>
62 <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) -->
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-source-plugin</artifactId>
66 <version>2.4</version>
67 <executions>
68 <execution>
69 <id>attach-sources</id>
70 <goals>
71 <goal>jar-no-fork</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-javadoc-plugin</artifactId>
79 <version>2.10.1</version>
andrewsbrownc7de55d2015-09-04 23:10:54 +010080 <configuration>
81 <additionalparam>-Xdoclint:none</additionalparam>
82 </configuration>
andrewsbrown8450e892015-02-23 11:17:22 -080083 <executions>
84 <execution>
85 <id>attach-javadocs</id>
86 <goals>
87 <goal>jar</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin>
92 <plugin>
93 <groupId>org.sonatype.plugins</groupId>
94 <artifactId>nexus-staging-maven-plugin</artifactId>
95 <version>1.6.3</version>
96 <extensions>true</extensions>
97 <configuration>
98 <serverId>ossrh</serverId>
99 <stagingProfileId>a80137db01223a</stagingProfileId>
100 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
101 <autoReleaseAfterClose>true</autoReleaseAfterClose>
102 </configuration>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-gpg-plugin</artifactId>
107 <version>1.5</version>
108 <executions>
109 <execution>
110 <id>sign-artifacts</id>
111 <phase>verify</phase>
112 <goals>
113 <goal>sign</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
andrewsbrown89f77c92015-03-25 12:56:55 -0700118 </plugins>
119 </build>
120 </profile>
121
122 <!-- run `mvn clean javadoc:javadoc scm-publish:publish-scm -P docs` to push
123 Javadoc to Github -->
124 <profile>
125 <id>docs</id>
126 <build>
127 <plugins>
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-javadoc-plugin</artifactId>
131 <version>2.10.2</version>
andrewsbrownc7de55d2015-09-04 23:10:54 +0100132 <configuration>
133 <additionalparam>-Xdoclint:none</additionalparam>
134 </configuration>
andrewsbrown89f77c92015-03-25 12:56:55 -0700135 </plugin>
andrewsbrown6b342ce2015-03-24 09:46:47 -0700136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-scm-publish-plugin</artifactId>
139 <version>1.1</version>
140 <configuration>
141 <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory>
142 <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment>
andrewsbrown89f77c92015-03-25 12:56:55 -0700143 <content>${project.build.directory}/site/apidocs</content>
andrewsbrown6b342ce2015-03-24 09:46:47 -0700144 <skipDeletedFiles>true</skipDeletedFiles>
145 <pubScmUrl>scm:git:https://github.com/01org/jndn-management.git</pubScmUrl>
146 <scmBranch>gh-pages</scmBranch>
147 </configuration>
148 </plugin>
andrewsbrown8450e892015-02-23 11:17:22 -0800149 </plugins>
150 </build>
151 </profile>
152 </profiles>
Alexander Afanasyevf1cc52c2016-01-25 10:50:46 -0800153</project>