-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (46 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
ext {
springBootVersion = '2.1.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.5'
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
version = "11.0.+"
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.properties'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
bootJar {
mainClassName = 'com.properties.prop.parser.ParserApplication'
launchScript()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}
dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'commons-configuration', name: 'commons-configuration', version: '1.6'
compile group: 'org.apache.lucene', name: 'lucene-core', version: '7.6.0'
compile group: 'org.apache.lucene', name: 'lucene-analyzers-common', version: '7.6.0'
compile group: 'org.apache.lucene', name: 'lucene-queryparser', version: '7.6.0'
compile group: 'org.apache.lucene', name: 'lucene-queries', version: '7.6.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
}