-
Notifications
You must be signed in to change notification settings - Fork 62
/
build.gradle
39 lines (34 loc) · 931 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
37
38
39
apply plugin: 'idea'
//and standard one
apply plugin: 'java'
apply plugin: 'application'
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
// maven { url 'http://mvnrepository.com/maven2' }
// maven { url 'https://repo1.maven.org/maven2' }
mavenCentral()
}
dependencies {
compile group: 'org.netbeans.api', name: 'org-openide-awt', version: 'RELEASE113'
// compile group: 'org.jfree', name: 'jfreechart', version: '1.0.13'
compile group: 'org.jfree', name: 'jfreechart', version: '1.0.14'
runtime files ('lib/images.jar')
}
sourceSets {
main {
java {
srcDirs 'src'
}
resources {
srcDir 'src'
include 'studio*.properties'
include 'org/netbeans/editor/Bundle*.properties'
}
}
}
application {
mainClassName = 'studio.core.Studio'
}