Generates a Radford Transit runsheet, in the XSLS file format, from a CSV file exported by WhenToWork scheduling software.
If you have Gradle installed, run gradle build
. To wrap the build into a Windows executable, run gradle createExe
Otherwise,
- On Linux or macOS, in the project's root directory, run
./gradlew build
- On Windows, in the project's root directory, run
gradlew.bat build
. To wrap the build into a Windows executable, rungradlew.bat createExe
.
If you have Gradle installed, run gradle run
Otherwise,
- On Linux or macOS, in the project's root directory, run
./gradlew run
- On Windows, in the project's root directory, run
gradlew.bat run
Runsheet Generator's source code complies with Google's Java Style standard.
If you have Gradle installed, to easily format the source code, run gradle spotlessApply
. To verify that all *.java
files are formatted properly, run gradle spotlessJavaCheck
.
Otherwise,
- On Linux or macOS, in the project's root directory, run
./gradlew goJF
. To verify that all*.java
files are formatted properly, run./gradlew spotlessJavaCheck
. - On Windows, in the project's root directory, run
gradlew.bat goJF
. To verify that all*.java
files are formatted properly, rungradlew.bat spotlessJavaCheck
.
If you have Gradle installed, run gradle makeJavadocs
Otherwise,
- On Linux or macOS, in the project's root directory, run
./gradlew makeJavadocs
- On Windows, in the project's root directory, run
gradlew.bat makeJavadocs
- JitPack adds the ability to use Git repos as dependencies.
- Shadow combines dependency classes and resources with a project’s into a single output JAR.
- gradle-launch4j uses Launch4J to wrap JARs into Windows executables.
- Spotless plugin for Gradle uses google-java-format to reformat Java source code to comply with Google Java Style.