kotlin-frontend-plugin
kotlin-frontend-plugin copied to clipboard
Gradle Kotlin (http://kotlinlang.org) plugin for frontend development
I use kotlin gradle build in my android project. I need to separate my xml files, so I write something like this: ``` sourceSets.getByName("main") { java.srcDir("src/main/res/") java.srcDir("src/main/res/layouts/fragment") java.srcDir("src/main/res/layouts/activity") java.srcDir("src/main/res/layouts/dialog") java.srcDir("src/main/res/layouts/view")...
``` * What went wrong: An exception occurred applying plugin request [id: 'org.jetbrains.kotlin.frontend', artifact: 'org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45'] > Failed to apply plugin [id 'org.gradle.java'] > Cannot add task 'processResources' as a task...
When building with Gradle 6 I received the following error: ``` * What went wrong: class org.jetbrains.kotlin.gradle.frontend.npm.NpmPackageManager$injectDependencies$1$1 overrides final method getBuildDependencies.()Lorg/gradle/api/tasks/TaskDependency; * Try: Run with --info or --debug option to...
Hi It's Conrad again, ### Background/Intro: Downloaded gradle source from git clone https://github.com/gradle/gradle.git and "almost" have it running in IntelliJ. ### Status: OMG on the 1 yard line ready to...
It would be nice if there was a reference example for getting a build set up using the gradle kotlin dsl. Sort of related to gradle/kotlin-dsl#40
When running a multiplatform build, I get the following: Uncaught Error: Error loading module 'sample-common-js'. Its dependency 'kotlin' was not found. Please, check whether 'kotlin' is loaded prior to 'sample-common-js'....
The Kotlin Multiplatform Plugin generates JsJars. Unfortunately, there doesn't seem to be a straight forward way to reference that as an NPM dependency in the plugin. Something like: ` kotlinFrontend...
Gradle 5.2, Kotlin 1.3.21, kotlin-frontend-plugin 0.0.45 When my modules using the frontend plugin do not have a `webpack.config.d` directory Gradle fails to validate the task: ``` org.gradle.api.tasks.TaskValidationException: A problem was...
It seems there is a typo in "bundle" method declaration. It is declared with generic parameter "C" which is not used in method signature. This makes impossible to configure bundles...