Skip to content

Commit

Permalink
Build as ELKI 0.7.0 addon.
Browse files Browse the repository at this point in the history
  • Loading branch information
kno10 committed Nov 27, 2015
1 parent 640ccd4 commit 96867df
Showing 1 changed file with 20 additions and 28 deletions.
48 changes: 20 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>de.lmu.ifi.dbs.elki</groupId>
<version>0.6.5-SNAPSHOT</version>
<artifactId>elki-project</artifactId>
<relativePath>../../</relativePath>
</parent>
<groupId>ch.ethz.globis.pht</groupId>
<version>1.0</version>

<artifactId>elki-phtree</artifactId>
<packaging>jar</packaging>

<name>ELKI Data Mining Framework - PH-Tree</name>
<name>ELKI Data Mining Framework - PH-Tree Add-on</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<elki.version>0.7.0</elki.version>
</properties>

<licenses>
<license>
Expand All @@ -21,47 +22,38 @@
</license>
</licenses>

<properties>
<elki.projdir>${basedir}/../..</elki.projdir>
</properties>

<build>
<plugins>
<!-- jar packaging -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<archive>
<manifestFile>${elki.projdir}/elki/src/main/resources/META-INF/MANIFEST.MF</manifestFile>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>de.lmu.ifi.dbs.elki.application.ELKILauncher</mainClass>
<classpathPrefix>dependency/</classpathPrefix>
</manifest>
</archive>
<useIncrementalCompilation>false</useIncrementalCompilation>
<source>1.7</source>
<target>1.7</target>
<debuglevel>source,lines</debuglevel>
<failOnError>true</failOnError>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>[4.8,)</version>
</dependency>

<dependency>
<groupId>de.lmu.ifi.dbs.elki</groupId>
<artifactId>elki</artifactId>
<version>${project.version}</version>
<version>${elki.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 96867df

Please sign in to comment.