RELISON-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.ir-uam</groupId> <artifactId>RELISON-examples</artifactId> <version>1.0.0</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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>RELISON</artifactId> <groupId>io.github.ir-uam</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <properties> <maven.compiler.source>14</maven.compiler.source> <maven.compiler.target>14</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.outputEncoding>UTF-8</project.build.outputEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-5</version> <configuration> <archive> <manifest> <mainClass>es.uam.eps.ir.relison.Main</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>14</source> <target>14 </target> </configuration> </plugin> </plugins> </build> <artifactId>RELISON-examples</artifactId> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>RELISON-linkpred</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>RELISON-sna</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>RELISON-diffusion</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.ranksys</groupId> <artifactId>RankSys-diversity</artifactId> <version>0.4.3</version> </dependency> <dependency> <groupId>org.ranksys</groupId> <artifactId>RankSys-formats</artifactId> <version>0.4.3</version> </dependency> <dependency> <groupId>org.ranksys</groupId> <artifactId>RankSys-rec</artifactId> <version>0.4.3</version> </dependency> <dependency> <groupId>com.esotericsoftware.yamlbeans</groupId> <artifactId>yamlbeans</artifactId> <version>1.06</version> </dependency> <dependency> <groupId>it.unimi.dsi</groupId> <artifactId>fastutil</artifactId> <version>8.5.2</version> </dependency> </dependencies> </project>