Andrew Brown | 2f1fdbf | 2015-01-21 10:52:29 -0800 | [diff] [blame] | 1 | <?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"> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>com.intel.jndn.management</groupId> |
| 5 | <artifactId>jndn-management</artifactId> |
andrewsbrown | bb2cc22 | 2015-09-04 23:05:24 +0100 | [diff] [blame] | 6 | <version>1.0.0</version> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 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> |
Alexander Afanasyev | ccb373d | 2016-01-25 11:28:18 -0800 | [diff] [blame] | 22 | <developer> |
| 23 | <name>Alexander Afanasyev</name> |
| 24 | <email>aa@cs.ucla.edu</email> |
| 25 | </developer> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 26 | </developers> |
| 27 | <scm> |
| 28 | <url>https://github.com/01org/jndn-management</url> |
andrewsbrown | a43079c | 2015-02-23 10:04:28 -0800 | [diff] [blame] | 29 | <connection>scm:git:git@github.com:01org/jndn-management.git</connection> |
| 30 | <developerConnection>scm:git:git@github.com:01org/jndn-management.git</developerConnection> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 31 | </scm> |
| 32 | <properties> |
| 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Alexander Afanasyev | f1cc52c | 2016-01-25 10:50:46 -0800 | [diff] [blame] | 34 | <maven.compiler.source>1.7</maven.compiler.source> |
| 35 | <maven.compiler.target>1.7</maven.compiler.target> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 36 | </properties> |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>net.named-data</groupId> |
| 40 | <artifactId>jndn</artifactId> |
Alexander Afanasyev | ccb373d | 2016-01-25 11:28:18 -0800 | [diff] [blame] | 41 | <version>0.10</version> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 42 | </dependency> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 43 | <!-- test dependencies --> |
| 44 | <dependency> |
| 45 | <groupId>junit</groupId> |
| 46 | <artifactId>junit</artifactId> |
Alexander Afanasyev | ccb373d | 2016-01-25 11:28:18 -0800 | [diff] [blame] | 47 | <version>4.12</version> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 48 | <scope>test</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>com.intel.jndn.mock</groupId> |
| 52 | <artifactId>jndn-mock</artifactId> |
Alexander Afanasyev | ccb373d | 2016-01-25 11:28:18 -0800 | [diff] [blame] | 53 | <version>1.0.1</version> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | </dependencies> |
andrewsbrown | 8450e89 | 2015-02-23 11:17:22 -0800 | [diff] [blame] | 57 | <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> |
andrewsbrown | c7de55d | 2015-09-04 23:10:54 +0100 | [diff] [blame] | 80 | <configuration> |
| 81 | <additionalparam>-Xdoclint:none</additionalparam> |
| 82 | </configuration> |
andrewsbrown | 8450e89 | 2015-02-23 11:17:22 -0800 | [diff] [blame] | 83 | <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> |
andrewsbrown | 89f77c9 | 2015-03-25 12:56:55 -0700 | [diff] [blame] | 118 | </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> |
andrewsbrown | c7de55d | 2015-09-04 23:10:54 +0100 | [diff] [blame] | 132 | <configuration> |
| 133 | <additionalparam>-Xdoclint:none</additionalparam> |
| 134 | </configuration> |
andrewsbrown | 89f77c9 | 2015-03-25 12:56:55 -0700 | [diff] [blame] | 135 | </plugin> |
andrewsbrown | 6b342ce | 2015-03-24 09:46:47 -0700 | [diff] [blame] | 136 | <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> |
andrewsbrown | 89f77c9 | 2015-03-25 12:56:55 -0700 | [diff] [blame] | 143 | <content>${project.build.directory}/site/apidocs</content> |
andrewsbrown | 6b342ce | 2015-03-24 09:46:47 -0700 | [diff] [blame] | 144 | <skipDeletedFiles>true</skipDeletedFiles> |
| 145 | <pubScmUrl>scm:git:https://github.com/01org/jndn-management.git</pubScmUrl> |
| 146 | <scmBranch>gh-pages</scmBranch> |
| 147 | </configuration> |
| 148 | </plugin> |
andrewsbrown | 8450e89 | 2015-02-23 11:17:22 -0800 | [diff] [blame] | 149 | </plugins> |
| 150 | </build> |
| 151 | </profile> |
| 152 | </profiles> |
Alexander Afanasyev | f1cc52c | 2016-01-25 10:50:46 -0800 | [diff] [blame] | 153 | </project> |