forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:JohnLangford/vowpal_wabbit
- Loading branch information
Showing
74 changed files
with
3,011 additions
and
1,357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,33 +2,62 @@ | |
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.github.EmergentOrder</groupId> | ||
<artifactId>vw-jni-${os.version}-${os.arch}</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<groupId>com.github.johnlangford</groupId> | ||
<artifactId>vw-jni</artifactId> | ||
<version>7.10.2-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<name>Vowpal Wabbit JNI Layer</name> | ||
<url>https://github.com/EmergentOrder/vowpal_wabbit</url> | ||
<description> | ||
A wrapper around Vowpal Wabbit that allows use through Java. This wrapper is designed to be self contained. Because | ||
of the use of JNI, a number of platforms are supported in this JAR. If your platform is not supported please feel free to add it | ||
by modifying src/main/bin/build.sh accordingly. | ||
</description> | ||
<url>https://github.com/JohnLangford/vowpal_wabbit</url> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:EmergentOrder/vowpal_wabbit.git</connection> | ||
<developerConnection>scm:git:[email protected]:EmergentOrder/vowpal_wabbit.git</developerConnection> | ||
<url>[email protected]:EmergentOrder/vowpal_wabbit.git</url> | ||
<connection>scm:git:[email protected]:JohnLangford/vowpal_wabbit.git</connection> | ||
<developerConnection>scm:git:[email protected]:JohnLangford/vowpal_wabbit.git</developerConnection> | ||
<url>[email protected]:JohnLangford/vowpal_wabbit.git</url> | ||
</scm> | ||
|
||
<properties> | ||
<slf4j.version>1.7.6</slf4j.version> | ||
<junit.version>4.11</junit.version> | ||
</properties> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<licenses> | ||
<license> | ||
<name>Vowpal Wabbit License</name> | ||
<url>https://github.com/JohnLangford/vowpal_wabbit/blob/master/LICENSE</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Jonathan Morra</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Ryan Deak</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>John Langford</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${junit.version}</version> | ||
<version>4.11</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
@@ -38,11 +67,27 @@ | |
<testResource> | ||
<directory>${project.build.directory}</directory> | ||
<includes> | ||
<include>vw_jni.lib</include> | ||
<include>vw_jni.*lib</include> | ||
</includes> | ||
</testResource> | ||
</testResources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>2.6.1</version> | ||
<configuration> | ||
<excludeDefaultDirectories>true</excludeDefaultDirectories> | ||
<filesets> | ||
<fileset> | ||
<directory>${project.build.directory}</directory> | ||
<excludes> | ||
<exclude>vw_jni.*lib</exclude> | ||
</excludes> | ||
<followSymlinks>false</followSymlinks> | ||
</fileset> | ||
</filesets> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
|
@@ -52,41 +97,6 @@ | |
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<version>1.7</version> | ||
<executions> | ||
<execution> | ||
<id>Build VW</id> | ||
<phase>process-classes</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<exportAntProperties>true</exportAntProperties> | ||
<target> | ||
<exec executable="make" failonerror="true" /> | ||
</target> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>Clean VW</id> | ||
<phase>clean</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<exportAntProperties>true</exportAntProperties> | ||
<target> | ||
<exec executable="make" failonerror="true"> | ||
<arg value="clean" /> | ||
</exec> | ||
</target> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
|
@@ -99,9 +109,6 @@ | |
</goals> | ||
<configuration> | ||
<rules> | ||
<requireJavaVersion> | ||
<version>[1.6,)</version> | ||
</requireJavaVersion> | ||
<banDuplicateClasses> | ||
<findAllDuplicates>true</findAllDuplicates> | ||
</banDuplicateClasses> | ||
|
@@ -162,7 +169,7 @@ | |
<resource> | ||
<directory>${project.build.directory}</directory> | ||
<includes> | ||
<include>vw_jni.lib</include> | ||
<include>vw_jni.*lib</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
|
@@ -175,11 +182,11 @@ | |
<artifactId>maven-release-plugin</artifactId> | ||
<version>2.5</version> | ||
<configuration> | ||
<autoVersionSubmodules>true</autoVersionSubmodules> | ||
<useReleaseProfile>false</useReleaseProfile> | ||
<releaseProfiles>release</releaseProfiles> | ||
<goals>deploy</goals> | ||
</configuration> | ||
<autoVersionSubmodules>true</autoVersionSubmodules> | ||
<useReleaseProfile>false</useReleaseProfile> | ||
<releaseProfiles>release</releaseProfiles> | ||
<goals>deploy</goals> | ||
</configuration> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.scm</groupId> | ||
|
@@ -200,43 +207,71 @@ | |
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.2</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.1.2</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.8.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.2</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
|
||
|
||
|
||
|
||
</distributionManagement> | ||
<profiles> | ||
<profile> | ||
<id>release-sign-artifacts</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>true</value> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.