-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
40 lines (34 loc) · 1.08 KB
/
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
40
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
}
}
apply plugin: "org.sonarqube"
apply plugin: 'java'
apply plugin: 'idea'
apply from: 'javafx.plugin'
if (!JavaVersion.current().isJava8Compatible()) {
throw new RuntimeException("Java 8 required, ${System.getPropertybuild("java.version")} found")
}
repositories {
mavenCentral()
}
dependencies {
compile(
[group: 'log4j', name: 'log4j', version: '1.2.17'],
[group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.0-rc1'],
[group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.0-rc1'],
[group: 'org.springframework', name: 'spring-context', version: '4.1.5.RELEASE'],
[group: 'org.springframework.boot', name: 'spring-boot-starter-remote-shell', version: '1.0.0.RELEASE']
)
}
javafx {
appID 'JavaFx'
appName 'SpringFX'
mainClass = 'ro.stancalau.springfx.gui.Main'
}