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 | ff02da3 | 2015-03-25 10:52:12 -0700 | [diff] [blame] | 6 | <version>0.9.7</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> |
| 22 | </developers> |
| 23 | <scm> |
| 24 | <url>https://github.com/01org/jndn-management</url> |
andrewsbrown | a43079c | 2015-02-23 10:04:28 -0800 | [diff] [blame] | 25 | <connection>scm:git:git@github.com:01org/jndn-management.git</connection> |
| 26 | <developerConnection>scm:git:git@github.com:01org/jndn-management.git</developerConnection> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 27 | </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> |
andrewsbrown | 579a9f1 | 2015-03-09 18:27:13 -0700 | [diff] [blame] | 37 | <version>RELEASE</version> |
andrewsbrown | 1e3bd29 | 2015-02-23 09:30:56 -0800 | [diff] [blame] | 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> |
andrewsbrown | 8450e89 | 2015-02-23 11:17:22 -0800 | [diff] [blame] | 58 | <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> |
andrewsbrown | 89f77c9 | 2015-03-25 12:56:55 -0700 | [diff] [blame] | 116 | </plugins> |
| 117 | </build> |
| 118 | </profile> |
| 119 | |
| 120 | <!-- run `mvn clean javadoc:javadoc scm-publish:publish-scm -P docs` to push |
| 121 | Javadoc to Github --> |
| 122 | <profile> |
| 123 | <id>docs</id> |
| 124 | <build> |
| 125 | <plugins> |
| 126 | <plugin> |
| 127 | <groupId>org.apache.maven.plugins</groupId> |
| 128 | <artifactId>maven-javadoc-plugin</artifactId> |
| 129 | <version>2.10.2</version> |
| 130 | </plugin> |
andrewsbrown | 6b342ce | 2015-03-24 09:46:47 -0700 | [diff] [blame] | 131 | <plugin> |
| 132 | <groupId>org.apache.maven.plugins</groupId> |
| 133 | <artifactId>maven-scm-publish-plugin</artifactId> |
| 134 | <version>1.1</version> |
| 135 | <configuration> |
| 136 | <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> |
| 137 | <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment> |
andrewsbrown | 89f77c9 | 2015-03-25 12:56:55 -0700 | [diff] [blame] | 138 | <content>${project.build.directory}/site/apidocs</content> |
andrewsbrown | 6b342ce | 2015-03-24 09:46:47 -0700 | [diff] [blame] | 139 | <skipDeletedFiles>true</skipDeletedFiles> |
| 140 | <pubScmUrl>scm:git:https://github.com/01org/jndn-management.git</pubScmUrl> |
| 141 | <scmBranch>gh-pages</scmBranch> |
| 142 | </configuration> |
| 143 | </plugin> |
andrewsbrown | 8450e89 | 2015-02-23 11:17:22 -0800 | [diff] [blame] | 144 | </plugins> |
| 145 | </build> |
| 146 | </profile> |
| 147 | </profiles> |
Andrew Brown | 2f1fdbf | 2015-01-21 10:52:29 -0800 | [diff] [blame] | 148 | </project> |