|
<?xml version="1.0"?>
|
|
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>net.named_data.jndn</groupId>
|
|
<artifactId>jndn</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>0.1.5</version>
|
|
<name>jndn</name>
|
|
<url>http://github.com/named-data/jndn</url>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>internal.artifactory.instance</id>
|
|
<name>Internal Artifactory Instance (Non-IT)</name>
|
|
<url>http://.../artifactory/simple/ext-release-local</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<testSourceDirectory>tests</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<inherited>true</inherited>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.2</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
<excludes>
|
|
<!-- relies on protobuf -->
|
|
<exclude>**/ProtobufTlv.java</exclude>
|
|
<exclude>**/ChronoSync2013.java</exclude>
|
|
<exclude>**/SyncStateProto.java</exclude>
|
|
<exclude>**/ChatbufProto.java</exclude>
|
|
<exclude>**/FibEntryProto.java</exclude>
|
|
<exclude>**/TestChronoChat.java</exclude>
|
|
<exclude>**/TestEncodeDecodeFibEntry.java</exclude>
|
|
</excludes>
|
|
<testExcludes>
|
|
<!-- relies on protobuf -->
|
|
<exclude>**/ProtobufTlv.java</exclude>
|
|
<exclude>**/ChronoSync2013.java</exclude>
|
|
<exclude>**/SyncStateProto.java</exclude>
|
|
<exclude>**/ChatbufProto.java</exclude>
|
|
<exclude>**/FibEntryProto.java</exclude>
|
|
<exclude>**/TestChronoChat.java</exclude>
|
|
<exclude>**/TestEncodeDecodeFibEntry.java</exclude>
|
|
</testExcludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.18</version>
|
|
<configuration>
|
|
<excludes>
|
|
<!-- relies on protobuf -->
|
|
<exclude>**/ProtobufTlv.java</exclude>
|
|
<exclude>**/ChronoSync2013.java</exclude>
|
|
<exclude>**/SyncStateProto.java</exclude>
|
|
<exclude>**/ChatbufProto.java</exclude>
|
|
<exclude>**/FibEntryProto.java</exclude>
|
|
<exclude>**/TestChronoChat.java</exclude>
|
|
<exclude>**/TestEncodeDecodeFibEntry.java</exclude>
|
|
<!-- stalls -->
|
|
<exclude>**/TestFaceInterestMethods.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|