Skip to content
View eeee88's full-sized avatar

Block or report eeee88

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
eeee88/README.md
  • 👋 Hi, I’m
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...
  • 😄 Pronouns: ...
  • ⚡ Fun fact: ...

kotlin { jvm { @OptIn(ExperimentalKotlinGradlePluginApi::class) binaries { // Configures a JavaExec task named "" and a Gradle distribution for the "main" compilation in this target executable { mainClass.set("foo.MainKt") }

        // Configures a JavaExec task named "Another" and a Gradle distribution for the "main" compilation
        executable(KotlinCompilation.MAIN_COMPILATION_NAME, "another") {
            // Set a different class
            mainClass.set("foo.MainAnotherKt")
        }

        // Configures a JavaExec task named "Test" and a Gradle distribution for the "test" compilation
        executable(KotlinCompilation.TEST_COMPILATION_NAME) {
            mainClass.set("foo.MainTestKt")
        }

        // Configures a JavaExec task named "TestAnother" and a Gradle distribution for the "test" compilation
        executable(KotlinCompilation.TEST_COMPILATION_NAME, "another") {
            mainClass.set("foo.MainAnotherTestKt")
        }
    }
}

}

@eeee88's activity is private