Actlist
Execute your own action list easily and simply
Installation
Windows:
download exe or zip file and launch.
macOS:
download dmg file and launch.
Documentation
Prerequisites For Development
- OpenJDK 1.8 with JavaFx binary distribution
- Scene Builder for graphic design
Actlist Application Development Setup Guide
- Fork this repository into your GitHub Account
- Clone & import as a Maven project into your favorite IDE
- Launch
src/main/java/org/silentsoft/actlist/application/App.java
Actlist Plugin Development Setup Guide
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
- Generate repository
- Clone & import as a Maven project into your favorite IDE
- If you are using
IntelliJ IDEA
, you need to enableAdd dependencies with "provided" scope to classpath
in the Run Configuration dialog
- If you are using
- Launch
src/main/java/sample/Plugin.java
Getting started with Maven
-
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
Tip
- If you are behind a proxy server then you should use one of the followingDetails
- Windows
$ set MAVEN_OPTS=-Dhttps.proxyHost=10.20.30.40 -Dhttps.proxyPort=8080
- macOS
$ export MAVEN_OPTS=-Dhttps.proxyHost=10.20.30.40 -Dhttps.proxyPort=8080
Note
- The proxy host10.20.30.40
and proxy port8080
is up to you.
- Windows
-
Import as a Maven project into your favorite IDE
- If you are using
IntelliJ IDEA
, you need to enableAdd dependencies with "provided" scope to classpath
in the Run Configuration dialog
- If you are using
-
Launch
src/main/java/sample/Plugin.java
Packaging
$ mvn clean package
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please note we have a CODE_OF_CONDUCT, please follow it in all your interactions with the project.
Change log
Please refer to CHANGELOG.
License
Please refer to LICENSE and NOTICE.