Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Add Gradle build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Shan1024 committed Feb 28, 2017
1 parent 41e937c commit 4b4306c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
buildscript {
repositories {
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
}

plugins {
id "org.jetbrains.intellij" version "0.2.5"
}

dependencies {
compile files('lib/antlr4-runtime-4.6.jar')
}

apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'

sourceSets {
main {
java {
srcDirs = ['src/main/java', 'adaptor/src', 'gen/']
}
}
}

intellij {
version 'IC-2016.3' //IntelliJ IDEA 2016.3 dependency; for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
plugins 'coverage' //Bundled plugin dependencies
pluginName 'Ballerina-IntelliJ-Plugin'
}

0 comments on commit 4b4306c

Please sign in to comment.