Compare commits
92 Commits
c635efaacf
...
936f4386b7
Author | SHA1 | Date | |
---|---|---|---|
936f4386b7 | |||
d10b47e864 | |||
6918f52422 | |||
9f3af7033e | |||
746da497de | |||
df451f01ce | |||
202d8cd0d3 | |||
c33680fd66 | |||
47059bc2de | |||
4449902185 | |||
972284fad3 | |||
fb01034fc8 | |||
3723881909 | |||
11fc4e46d1 | |||
486981c0ff | |||
0d7f970629 | |||
cabadba885 | |||
c82a171e3b | |||
ecf5e1fab9 | |||
63ec2cc289 | |||
48e65bd53d | |||
887de9979b | |||
f3adce05df | |||
e2ddf48aa8 | |||
5fc7e89c7c | |||
a79c79ab77 | |||
86d8f85e3c | |||
76a4738682 | |||
01b3408faf | |||
64b70fabff | |||
29990ca26e | |||
73b5dd47df | |||
c2019def08 | |||
495b04e51d | |||
be3f70f14c | |||
9666419ed2 | |||
ef9b78251c | |||
2ca47e0d98 | |||
dde1bfec7b | |||
c757c6d246 | |||
27c72636c0 | |||
fe73f01642 | |||
a264e23178 | |||
02e3412aff | |||
e8386affb3 | |||
d5dd379350 | |||
b441310963 | |||
03a141777d | |||
7984a554c1 | |||
2fbb530e46 | |||
d45a536faf | |||
d3901ba110 | |||
fd236ef0cf | |||
abd38f2b9a | |||
5442fe40cc | |||
7a63050245 | |||
dc24a8589f | |||
694416b4aa | |||
2cbaaef9ea | |||
55b8d46e70 | |||
d8e4a2e7b6 | |||
af54daed6a | |||
8e892eb0f5 | |||
e40bde4830 | |||
3abe71b07d | |||
505a05bd0c | |||
938bc36347 | |||
8f58bec32a | |||
9cdc2b86b4 | |||
1fe44198b8 | |||
5f111a9671 | |||
fbf1cb50e2 | |||
8fb60bc079 | |||
7cc6e88c35 | |||
a2ff48a165 | |||
1f22e12dd4 | |||
07d6a2118f | |||
26cf6d0b03 | |||
056ffef87c | |||
eb0ace5fbe | |||
a4120b3c48 | |||
2131ac462b | |||
c372ff511f | |||
0e4cb4fa2e | |||
b4af3bf238 | |||
f0c1c26800 | |||
2a51f5fffc | |||
93d4da03df | |||
d167d80b84 | |||
9e4bbf203d | |||
9ee62e2aa5 | |||
68da6681f5 |
56
build.gradle
56
build.gradle
@ -1,67 +1,43 @@
|
||||
buildscript {
|
||||
ext {
|
||||
versionSpringBoot = '2.3.9.RELEASE'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version: versionSpringBoot
|
||||
}
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '3.4.2'
|
||||
id 'io.spring.dependency-management' version '1.1.7'
|
||||
}
|
||||
|
||||
group 'ru.ulstu'
|
||||
version '0.0.1'
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'org.springframework.boot'
|
||||
apply plugin: 'io.spring.dependency-management'
|
||||
|
||||
sourceCompatibility = 11
|
||||
targetCompatibility = 11
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'fuzzy-controller'
|
||||
}
|
||||
|
||||
compileJava {
|
||||
options.encoding = "UTF-8"
|
||||
group = 'ru.ulstu'
|
||||
version = '0.0.1-SNAPSHOT'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(21)
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
maven {
|
||||
url="https://repository.ow2.org/nexus/content/repositories/public"
|
||||
url = uri("http://repo.athene.tech/repository/maven-central/")
|
||||
allowInsecureProtocol(true)
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
implementation.exclude module: "spring-boot-starter-tomcat"
|
||||
implementation.exclude module: "follow-redirects"
|
||||
implementation.exclude module: "is-buffer"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty'
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation'
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux'
|
||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-security'
|
||||
implementation group: 'org.json', name: 'json', version: '20220320'
|
||||
|
||||
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect'
|
||||
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity6'
|
||||
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-afterburner'
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-hibernate5'
|
||||
implementation group: 'com.h2database', name:'h2'
|
||||
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
|
||||
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
|
||||
|
||||
implementation group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
|
||||
implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.8.4'
|
||||
|
||||
implementation group: 'com.ibm.icu', name: 'icu4j', version: '63.1'
|
||||
implementation group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '5.9.0.202009080501-r'
|
||||
|
Loading…
x
Reference in New Issue
Block a user