cf4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ferortega</groupId> <artifactId>cf4j</artifactId> <version>2.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>com.github.ferortega</groupId> <artifactId>cf4j</artifactId> <name>cf4j</name> <version>2.0.1</version> <description>A Java's Collaborative Filtering library to carry out experiments in research of Collaborative Filtering based Recommender Systems.</description> <url>https://github.com/ferortega/cf4j</url> <developers> <developer> <id>Fernando Ortega</id> <email>fernando.ortega@upm.es</email> </developer> <developer> <id>Jesús Mayor</id> <email>jesus.mayor@upm.es</email> </developer> <developer> <id>Raúl Lara</id> <email>raul.lara@upm.es</email> </developer> <developer> <id>Daniel López</id> <email>daniel.lopez@upm.es</email> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git@github.com:ferortega/cf4j.git</connection> <developerConnection>scm:git@github.com:ferortega/cf4j.git</developerConnection> <url>git@github.com:ferortega/cf4j.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <author>false</author> <doctitle>API Documentation for Collaborative Filtering for Java (CF4J) ${project.version}</doctitle> <windowtitle>CF4J ${project.version} API Documentation</windowtitle> <description>aaaa</description> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration /> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <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> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>