Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade springboot version #229

Merged
merged 1 commit into from
Apr 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package=co.com.bancolombia
systemProp.version=2.2.3
juancgalvis marked this conversation as resolved.
Show resolved Hide resolved
systemProp.version=2.2.4

8 changes: 4 additions & 4 deletions src/main/java/co/com/bancolombia/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ public class Constants {
public static final String APP_SERVICE = "app-service";
public static final String PATH_GRAPHQL = "/graphqlpath";
public static final String SECRETS_VERSION = "3.0.0";
public static final String SPRING_BOOT_VERSION = "2.6.2";
public static final String UNDERTOW_VERSION = "2.6.2";
public static final String JETTY_VERSION = "2.6.2";
public static final String SPRING_BOOT_VERSION = "2.6.6";
public static final String UNDERTOW_VERSION = "2.6.6";
public static final String JETTY_VERSION = "2.6.6";
public static final String SONAR_VERSION = "3.0";
public static final String LOMBOK_VERSION = "1.18.22";
public static final String JACOCO_VERSION = "0.8.5";
public static final String COBERTURA_VERSION = "3.0.0";
public static final String RCOMMONS_ASYNC_COMMONS_STARTER_VERSION = "1.0.4";
public static final String RCOMMONS_OBJECT_MAPPER_VERSION = "0.1.0";
public static final String PLUGIN_VERSION = "2.2.3";
public static final String PLUGIN_VERSION = "2.2.4";
juancgalvis marked this conversation as resolved.
Show resolved Hide resolved
public static final String GRADLE_WRAPPER_VERSION = "6.9.1";
public static final String KOTLIN_VERSION = "1.6.10";
public static final String TOMCAT_EXCLUSION_KOTLIN =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void buildModule(ModuleBuilder builder) throws IOException, InvalidTaskOp
String jettyDependency =
buildImplementation(
builder.isKotlin(),
"org.springframework.boot:spring-boot-starter-jetty:" + Constants.UNDERTOW_VERSION);
"org.springframework.boot:spring-boot-starter-jetty:" + Constants.JETTY_VERSION);
builder.appendDependencyToModule(APP_SERVICE, jettyDependency);
builder.appendConfigurationToModule(APP_SERVICE, tomcatExclusion(builder.isKotlin()));
return;
Expand Down