Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackjii79 committed Dec 13, 2023
1 parent b4caf7f commit ad90176
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ pipeline {
// Run inside JAVA_IMAGE container on NODE_LABEL host.
agent {
docker {
registryCredentialsId HARBOR_CREDS
registryUrl HARBOR_URL
image JAVA_8_IMAGE
//registryCredentialsId HARBOR_CREDS
//registryUrl HARBOR_URL
image JAVA_IMAGE
label NODE_LABEL
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
version: springBootPluginVersion
classpath group: 'gradle.plugin.org.hidetake', name: 'gradle-swagger-generator-plugin',
version: swaggerGradlePluginVersion
classpath group: 'com.github.jengelman.gradle.plugins', name: 'shadow',
classpath group: 'com.github.johnrengelman', name: 'shadow',
version: shadowJarVersion
// classpath group: 'com.diffplug.spotless', name: 'spotless-plugin-gradle', version: spotlessPluginVersion
classpath group: 'net.ltgt.gradle', name: 'gradle-errorprone-plugin',
Expand Down
2 changes: 1 addition & 1 deletion common/kdb-java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: project(":").file('gradle/java_8_no_style.gradle')
apply from: project(":").file('gradle/java_no_style.gradle')

dependencies {
implementation group: 'com.google.code.gson', name: 'gson'
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ springFoxVersion = 3.0.0
swaggerCodegenVersion = 3.0.47
swaggerCoreVersion = 2.2.19
swaggerCoreSpringVersion = 1.6.12
shadowJarVersion = 4.0.4
shadowJarVersion = 8.1.1
slf4jVersion = 2.0.9
log4jVersion = 2.22.0
apacheCommonsCliVersion = 1.4
Expand All @@ -39,7 +39,7 @@ springBootPluginVersion = 2.7.12
swaggerGradlePluginVersion = 2.19.2
spotlessPluginVersion = 3.24.2
errorpronePluginVersion = 3.1.0
jibPluginVersion = 2.7.1
jibPluginVersion = 3.4.0
tomcatEmbedVersion = 9.0.75

# External tools:
Expand Down
9 changes: 0 additions & 9 deletions gradle/java_8_no_style.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion kdb-mojo-scorer/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.github.johnrengelman.shadow'
}
apply from: project(":").file('gradle/java_8_no_style.gradle')
apply from: project(":").file('gradle/java_no_style.gradle')

dependencies {
implementation project(':common:kdb-java')
Expand Down

0 comments on commit ad90176

Please sign in to comment.