-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 1.17 KB
/
build.gradle
File metadata and controls
38 lines (32 loc) · 1.17 KB
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
// https://mvnrepository.com/artifact/org.springframework.boot
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:4.0.2")
}
}
version = '0.1.0-SNAPSHOT'
processResources.destinationDir = compileJava.destinationDir
compileJava.dependsOn processResources
repositories {
mavenCentral()
mavenLocal()
maven { url "https://repo.spring.io/libs-snapshot" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
implementation 'commons-codec:commons-codec:1.17.1'
implementation 'io.crate:crate-jdbc:2.7.0'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc:4.0.2'
implementation 'org.springframework.boot:spring-boot-starter-jdbc:4.0.2'
implementation 'org.springframework.boot:spring-boot-starter-web:4.0.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test:4.0.2'
testImplementation 'junit:junit:4.13.2'
}
idea.module.inheritOutputDirs = true