k3nn
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.k3nn</groupId>
<artifactId>k3nn</artifactId>
<version>0.01</version>
</dependency><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>
<artifactId>k3nn</artifactId>
<groupId>io.github.k3nn</groupId>
<version>0.01</version>
<packaging>jar</packaging>
<name>k3nn</name>
<url>https://k3nn.github.io</url>
<description>Implementation of 3NN K-Nearest Neighbor clustering
as described in [1], to identify salient information as
the 2-degenerate cores from a clustering graph containing
information nodes that are linked to their 3-nearest neighbors,
and qualifying sentences that outrank previously selected
sentences using a relevance model of salient information seen
over a recent time interval.
[1] JBP Vuurens, AP de Vries, R Blanco, P Mika,
"Online News Tracking for Ad-Hoc Information Needs",
in ICTIR 2015.
</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jeroenvuurens</id>
<name>Jeroen Vuurens</name>
<email>jbpvuurens@gmail.nl</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:k3nn/k3nn.git</connection>
<developerConnection>scm:git:git@github.com:k3nn/k3nn.git</developerConnection>
<url>git@github.com:k3nn/k3nn.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<src.dir1>${basedir}/java/src</src.dir1>
<test.dir1>${basedir}/java/src/test</test.dir1>
</properties>
<build>
<sourceDirectory>${src.dir1}</sourceDirectory>
<testSourceDirectory>${test.dir1}</testSourceDirectory>
<plugins>
<plugin> <!-- use with antrun:run to upload, change settings for your server -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<configuration>
<target>
<echo message="${project.build.directory}/${project.build.finalName}.jar" />
<scp todir="${kbadir}"
keyfile="${keyfile}"
trust="true" failonerror="false"
file="${project.build.directory}/${project.build.finalName}.jar">
</scp>
</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-jsch</artifactId>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.50</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<debug>false</debug>
</configuration>
</plugin>
<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-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<extensions>true</extensions>
<configuration>
<serverId>oss.sonatype.org</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.github.htools</groupId>
<artifactId>htools</artifactId>
<version>0.26</version>
<exclusions>
<exclusion>
<groupId>org.apache.hadoop</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.hbase</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>