Project

General

Profile

Task #2374 » pom.xml

Andrew Brown, 02/17/2015 10:12 AM

 
<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</groupId>
<artifactId>jndn-examples</artifactId>
<packaging>jar</packaging>
<version>0.2</version>
<name>jndn-examples</name>
<description>Examples using jNDN; use with 'mvn test -P [example-name]'.</description>
<url>http://github.com/named-data/jndn</url>
<licenses>
<license>
<name>LGPL</name>
<url>https://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Jeff Thompson</name>
<organization>UCLA</organization>
<url>http://github.com/jefft0</url>
</developer>
<developer>
<name>Andrew Brown</name>
<organization>Intel</organization>
<url>http://github.com/andrewsbrown</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>net.named-data</groupId>
<artifactId>jndn</artifactId>
<version>RELEASE</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.8.7</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.6.1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
</build>
<profiles>
<!-- example profile -->
<profile>
<id>encode-decode-fib</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>net.named_data.jndn.tests.TestEncodeDecodeFibEntry</mainClass>
<arguments></arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
(4-4/6)