Skip to main content

Quick Start

Requirements

Development setup

There are two ways to create an Actlist plugin. the first one is using starter-kit(which is highly recommended) and the second one is creating Maven project using Maven archetype.

Getting started with GitHub

  1. Generate repository

  2. Clone & import as a Maven project into your favorite IDE

    note

    If you are using IntelliJ IDEA, you need to enable Add dependencies with "provided" scope to classpath in the Run Configuration dialog

  3. Launch

    src/main/java/sample/Plugin.java

Getting started with Maven

  1. Execute following command:

    mvn archetype:generate ^
    -DarchetypeGroupId=org.silentsoft ^
    -DarchetypeArtifactId=actlist-plugin-archetype ^
    -DarchetypeVersion=1.0.0 ^
    -Dactlist-plugin-sdk-version=2.2.0 ^
    -DgroupId=sample ^
    -DartifactId=starter ^
    -Dversion=1.0.0
    If you are behind a proxy server then you should use one of the following
    set MAVEN_OPTS=-Dhttps.proxyHost=10.20.30.40 -Dhttps.proxyPort=8080
    note

    The proxy host 10.20.30.40 and proxy port 8080 is up to you.

  2. Import as a Maven project into your favorite IDE

    note

    If you are using IntelliJ IDEA, you need to enable Add dependencies with "provided" scope to classpath in the Run Configuration dialog

  3. Launch

    src/main/java/sample/Plugin.java