Skip to content

Getting started

Francesco Palozzi edited this page Jun 5, 2026 · 1 revision

Prerequisites

  • Java 21 (LTS) or later
  • Maven 3.8+

Build

Clone the repository and build with Maven:

git clone <repository-url>
cd RNA2DUnifier
mvn clean install

To skip tests during the build:

mvn clean install -DskipTests

The compiled JAR will be placed in target/rna2d-unifier-0.0.1.jar.


Add as Dependency

After installing locally, add the following to your project's pom.xml:

<dependency>
    <groupId>it.unicam.cs.bdslab</groupId>
    <artifactId>rna2d-unifier</artifactId>
    <version>0.0.1</version>
</dependency>

Home | Next: Quick Start

Clone this wiki locally