Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 598 Bytes

README.md

File metadata and controls

18 lines (17 loc) · 598 Bytes

silver-octo-couscous

usage

  • clone repo
  • Open a terminal (or command prompt) in your project directory and run the command:
    ./gradlew build
    If you are using Windows, replace ./gradlew with gradlew.bat. This command will build the project and create a JAR file in the build/libs directory of your project.
  • add code below to your build.gradle.kts:
      tasks.withType<KotlinCompile> {
      compilerOptions {
          freeCompilerArgs.add("-Xplugin=${project.rootDir}/build/libs/comp_plugin-1.0-SNAPSHOT.jar")
      }
    }