Skip to content

Install

JSignal offers three main public packages with different levels of capabilities, each successive package is lower level than the previous:

std is JSignal's standard component library. This is the recommended package if you are looking to start building GUIs quickly.
<dependency>
<groupId>org.jsignal</groupId>
<artifactId>std</artifactId>
<version>0.0.6</version>
</dependency>"

Annotation Processor

There is also a helpful annotation processor for generating component builders. For more info check out the annotation processor guide.

For maven usage with org.apache.maven.plugins.maven-compiler-plugin.

<configuration>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.jsignal</groupId>
<artifactId>prop</artifactId>
<version>0.0.6</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>