blob: 7da99dc8a6ee8776a8b3859d97218f6184b4d753 [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>
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>
Alexander Afanasyevf1cc52c2016-01-25 10:50:46 -080030 <maven.compiler.source>1.7</maven.compiler.source>
31 <maven.compiler.target>1.7</maven.compiler.target>
andrewsbrown1e3bd292015-02-23 09:30:56 -080032 </properties>
33 <dependencies>
34 <dependency>
35 <groupId>net.named-data</groupId>
36 <artifactId>jndn</artifactId>
Andrew Brownbaf21d52015-07-13 10:32:46 -070037 <version>0.7</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -080038 </dependency>
39 <dependency>
40 <groupId>com.intel.jndn.utils</groupId>
41 <artifactId>jndn-utils</artifactId>
Andrew Brownbaf21d52015-07-13 10:32:46 -070042 <version>1.0.0</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -080043 </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>
andrewsbrownbb2cc222015-09-04 23:05:24 +010054 <version>0.10.2</version>
andrewsbrown1e3bd292015-02-23 09:30:56 -080055 <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>
andrewsbrownc7de55d2015-09-04 23:10:54 +010081 <configuration>
82 <additionalparam>-Xdoclint:none</additionalparam>
83 </configuration>
andrewsbrown8450e892015-02-23 11:17:22 -080084 <executions>
85 <execution>
86 <id>attach-javadocs</id>
87 <goals>
88 <goal>jar</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 <plugin>
94 <groupId>org.sonatype.plugins</groupId>
95 <artifactId>nexus-staging-maven-plugin</artifactId>
96 <version>1.6.3</version>
97 <extensions>true</extensions>
98 <configuration>
99 <serverId>ossrh</serverId>
100 <stagingProfileId>a80137db01223a</stagingProfileId>
101 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
102 <autoReleaseAfterClose>true</autoReleaseAfterClose>
103 </configuration>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-gpg-plugin</artifactId>
108 <version>1.5</version>
109 <executions>
110 <execution>
111 <id>sign-artifacts</id>
112 <phase>verify</phase>
113 <goals>
114 <goal>sign</goal>
115 </goals>
116 </execution>
117 </executions>
118 </plugin>
andrewsbrown89f77c92015-03-25 12:56:55 -0700119 </plugins>
120 </build>
121 </profile>
122
123 <!-- run `mvn clean javadoc:javadoc scm-publish:publish-scm -P docs` to push
124 Javadoc to Github -->
125 <profile>
126 <id>docs</id>
127 <build>
128 <plugins>
129 <plugin>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-javadoc-plugin</artifactId>
132 <version>2.10.2</version>
andrewsbrownc7de55d2015-09-04 23:10:54 +0100133 <configuration>
134 <additionalparam>-Xdoclint:none</additionalparam>
135 </configuration>
andrewsbrown89f77c92015-03-25 12:56:55 -0700136 </plugin>
andrewsbrown6b342ce2015-03-24 09:46:47 -0700137 <plugin>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-scm-publish-plugin</artifactId>
140 <version>1.1</version>
141 <configuration>
142 <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory>
143 <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment>
andrewsbrown89f77c92015-03-25 12:56:55 -0700144 <content>${project.build.directory}/site/apidocs</content>
andrewsbrown6b342ce2015-03-24 09:46:47 -0700145 <skipDeletedFiles>true</skipDeletedFiles>
146 <pubScmUrl>scm:git:https://github.com/01org/jndn-management.git</pubScmUrl>
147 <scmBranch>gh-pages</scmBranch>
148 </configuration>
149 </plugin>
andrewsbrown8450e892015-02-23 11:17:22 -0800150 </plugins>
151 </build>
152 </profile>
153 </profiles>
Alexander Afanasyevf1cc52c2016-01-25 10:50:46 -0800154</project>