Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/.idea/shelf
/.idea/libraries
/.idea/modules
/.idea/atlassian-ide-plugin.xml

out
dist
Expand Down
17 changes: 16 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ buildscript {

group 'com.cursive-ide'
version '1.1.0'
ext.pluginId = 'com.cursive-ide.clojure'
ext.pluginImplementationClass = 'cursive.ClojurePlugin'

apply plugin: 'kotlin'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'com.gradle.plugin-publish'
apply plugin: "java-gradle-plugin"

project.afterEvaluate {
// Ugh, see https://discuss.gradle.org/t/kotlin-groovy-and-java-compilation/14903/9
Expand All @@ -55,6 +58,18 @@ dependencies {
compile gradleApi()
compile localGroovy()
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile gradleTestKit()
testCompile "junit:junit:4.12"
testCompile 'net.wuerl.kotlin:assertj-core-kotlin:0.1.3'
}

gradlePlugin {
plugins {
clojurePlugin {
id = pluginId
implementationClass = pluginImplementationClass
}
}
}

pluginBundle {
Expand All @@ -65,7 +80,7 @@ pluginBundle {

plugins {
clojurePlugin {
id = 'com.cursive-ide.clojure'
id = pluginId
displayName = 'Gradle Clojure plugin'
}
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
180 changes: 90 additions & 90 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading