File tree 3 files changed +8
-17
lines changed
3 files changed +8
-17
lines changed Original file line number Diff line number Diff line change 13
13
plugins {
14
14
id ' java'
15
15
id ' org.springframework.boot' version ' 3.4.0'
16
- id ' io.spring.dependency-management' version ' 1.1.6 '
16
+ id ' io.spring.dependency-management' version ' 1.1.7 '
17
17
}
18
18
19
19
group = ' ch.xxx'
20
20
version = ' 0.0.1-SNAPSHOT'
21
21
22
22
java {
23
23
toolchain {
24
- languageVersion = JavaLanguageVersion . of(21 )
24
+ languageVersion = JavaLanguageVersion . of(24 )
25
25
}
26
26
}
27
27
@@ -43,16 +43,11 @@ dependencies {
43
43
implementation ' net.javacrumbs.shedlock:shedlock-provider-jdbc-template:6.0.1'
44
44
implementation ' org.springframework.ai:spring-ai-pgvector-store-spring-boot-starter:1.0.0-SNAPSHOT'
45
45
implementation ' org.springframework.ai:spring-ai-transformers-spring-boot-starter:1.0.0-SNAPSHOT'
46
+ implementation ' org.springframework.ai:spring-ai-ollama-spring-boot-starter:1.0.0-SNAPSHOT'
46
47
testImplementation ' org.springframework.boot:spring-boot-starter-test'
47
48
testImplementation ' org.springframework.security:spring-security-test'
48
- testImplementation ' com.tngtech.archunit:archunit-junit5:1.3 .0'
49
+ testImplementation ' com.tngtech.archunit:archunit-junit5:1.4 .0'
49
50
testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
50
-
51
- // if(project.hasProperty('useOllama')) {
52
- implementation ' org.springframework.ai:spring-ai-ollama-spring-boot-starter:1.0.0-SNAPSHOT'
53
- // } else {
54
- // implementation 'org.springframework.ai:spring-ai-openai-spring-boot-starter:0.8.1-SNAPSHOT'
55
- // }
56
51
}
57
52
58
53
bootJar {
Original file line number Diff line number Diff line change 17
17
group = ' ch.xxx'
18
18
version = ' 0.0.1-SNAPSHOT'
19
19
20
- java {
21
- sourceCompatibility = ' 21'
22
- }
23
-
24
20
task cleanAngular {
25
21
if (project. hasProperty(' withAngular' )) {
26
22
logger. info(' Task cleanAngular' )
@@ -30,7 +26,7 @@ task cleanAngular {
30
26
31
27
task buildAngular {
32
28
if (project. hasProperty(' withAngular' )) {
33
- providers . exec {
29
+ exec {
34
30
logger. info(' Task buildAngular - npm install' )
35
31
workingDir ' src/angular'
36
32
if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
@@ -39,7 +35,7 @@ task buildAngular {
39
35
commandLine(' npm' , ' install' )
40
36
}
41
37
}
42
- providers . exec {
38
+ exec {
43
39
logger. info(' Task buildAngular - npm run build' )
44
40
workingDir ' src/angular'
45
41
if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
@@ -53,7 +49,7 @@ task buildAngular {
53
49
54
50
task testAngular {
55
51
if (project. hasProperty(' withAngular' )) {
56
- providers . exec {
52
+ exec {
57
53
workingDir ' src/angular'
58
54
if (System . getProperty(" os.name" ). toUpperCase(). contains(" WINDOWS" )){
59
55
logger. info(' Task buildAngular - npm run test' )
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments