Andrew Brown | e1ebd67 | 2015-01-16 14:46:13 -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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>com.intel.jndn.mock</groupId> |
| 5 | <artifactId>jndn-mock</artifactId> |
andrewsbrown | de4e98c | 2015-05-15 10:26:33 -0700 | [diff] [blame^] | 6 | <version>0.10.2</version> |
andrewsbrown | c769319 | 2015-02-23 10:14:11 -0800 | [diff] [blame] | 7 | <name>jndn-mock</name> |
Andrew Brown | ec1b0d0 | 2015-02-21 13:11:42 -0800 | [diff] [blame] | 8 | <description>Tools for testing NDN Java code without using network IO.</description> |
andrewsbrown | c769319 | 2015-02-23 10:14:11 -0800 | [diff] [blame] | 9 | <url>https://github.com/01org/jndn-utils</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-mock</url> |
| 25 | <connection>scm:git:git@github.com:01org/jndn-mock.git</connection> |
| 26 | <developerConnection>scm:git:git@github.com:01org/jndn-mock.git</developerConnection> |
| 27 | </scm> |
Andrew Brown | eef9b8e | 2015-01-21 15:26:59 -0800 | [diff] [blame] | 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> |
Andrew Brown | e1ebd67 | 2015-01-16 14:46:13 -0800 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
Andrew Brown | b91e690 | 2015-02-12 09:01:50 -0800 | [diff] [blame] | 35 | <groupId>net.named-data</groupId> |
Andrew Brown | e1ebd67 | 2015-01-16 14:46:13 -0800 | [diff] [blame] | 36 | <artifactId>jndn</artifactId> |
andrewsbrown | de4e98c | 2015-05-15 10:26:33 -0700 | [diff] [blame^] | 37 | <version>0.6</version> |
Andrew Brown | e1ebd67 | 2015-01-16 14:46:13 -0800 | [diff] [blame] | 38 | </dependency> |
Andrew Brown | e1ebd67 | 2015-01-16 14:46:13 -0800 | [diff] [blame] | 39 | <!-- Test dependencies --> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <version>4.10</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
andrewsbrown | be120f4 | 2015-02-23 11:18:58 -0800 | [diff] [blame] | 47 | <profiles> |
| 48 | <profile> |
| 49 | <id>ossrh</id> |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <!-- OSSRH-directed plugins (see http://central.sonatype.org/pages/apache-maven.html) --> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-source-plugin</artifactId> |
| 56 | <version>2.4</version> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <id>attach-sources</id> |
| 60 | <goals> |
| 61 | <goal>jar-no-fork</goal> |
| 62 | </goals> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-javadoc-plugin</artifactId> |
| 69 | <version>2.10.1</version> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <id>attach-javadocs</id> |
| 73 | <goals> |
| 74 | <goal>jar</goal> |
| 75 | </goals> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
| 79 | <plugin> |
| 80 | <groupId>org.sonatype.plugins</groupId> |
| 81 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 82 | <version>1.6.3</version> |
| 83 | <extensions>true</extensions> |
| 84 | <configuration> |
| 85 | <serverId>ossrh</serverId> |
| 86 | <stagingProfileId>a80137db01223a</stagingProfileId> |
| 87 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 88 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-gpg-plugin</artifactId> |
| 94 | <version>1.5</version> |
| 95 | <executions> |
| 96 | <execution> |
| 97 | <id>sign-artifacts</id> |
| 98 | <phase>verify</phase> |
| 99 | <goals> |
| 100 | <goal>sign</goal> |
| 101 | </goals> |
| 102 | </execution> |
| 103 | </executions> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | </profile> |
| 108 | </profiles> |
Andrew Brown | e1ebd67 | 2015-01-16 14:46:13 -0800 | [diff] [blame] | 109 | </project> |