-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
36 lines (29 loc) · 851 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
plugins {
id "org.jetbrains.intellij" version "0.0.27"
id "de.undercouch.download" version "2.0.0"
id 'nebula.provided-base' version '3.0.3' // if you want provided-base
}
repositories {
mavenLocal()
mavenCentral()
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'de.undercouch.download'
apply plugin: 'nebula.provided-base'
apply from: 'gradle/codegen.gradle'
sourceCompatibility = 1.8
targetCompatibility = 1.8
intellij {
version '15.0.1'
pluginName 'Frege'
publish {
username System.getenv('JETBRAINS_USER')
password System.getenv('JETBRAINS_PASS')
pluginId '8009'
// channel 'nightly'
}
}
dependencies {
provided files("${System.properties['java.home']}/../lib/tools.jar")
}
sourceSets.main.java.srcDirs = ['src/main/java', 'gen', "$buildDir/generatedSources"]