Skip to content

Commit

Permalink
update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sbx0 committed Jan 9, 2024
1 parent ade84cf commit c7c1353
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Todo Project

[![test](https://github.com/sbx0/todo/actions/workflows/build.yml/badge.svg)](https://github.com/sbx0/todo/actions/workflows/build.yml)
[![coverage](https://img.shields.io/badge/coverage-58%25-red.svg)](https://todo-code-coverage.sbx0.cn/)
[![coverage](https://img.shields.io/badge/coverage-57%25-red.svg)](https://todo-code-coverage.sbx0.cn/)

Target: Planning your time
14 changes: 7 additions & 7 deletions todo-service/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
id 'org.springframework.boot' version '3.1.4'
id 'org.springframework.boot' version '3.2.1'
// https://mvnrepository.com/artifact/io.spring.dependency-management/io.spring.dependency-management.gradle.plugin
id 'io.spring.dependency-management' version '1.1.3'
id 'io.spring.dependency-management' version '1.1.4'
// https://mvnrepository.com/artifact/org.asciidoctor.jvm.convert/org.asciidoctor.jvm.convert.gradle.plugin
id "org.asciidoctor.jvm.convert" version "3.3.2"
id 'jacoco'
Expand Down Expand Up @@ -41,9 +41,9 @@ dependencies {
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml'

// https://mvnrepository.com/artifact/io.lettuce/lettuce-core
implementation group: 'io.lettuce', name: 'lettuce-core', version: '6.2.6.RELEASE'
implementation group: 'io.lettuce', name: 'lettuce-core', version: '6.3.0.RELEASE'
// https://mvnrepository.com/artifact/com.theokanning.openai-gpt3-java/service
implementation 'com.theokanning.openai-gpt3-java:service:0.16.0'
implementation 'com.theokanning.openai-gpt3-java:service:0.18.2'

// https://mvnrepository.com/artifact/org.mapstruct/mapstruct
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
Expand All @@ -53,15 +53,15 @@ dependencies {
annotationProcessor "org.projectlombok:lombok-mapstruct-binding:0.2.0"

// https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j
implementation 'net.sourceforge.tess4j:tess4j:5.8.0'
implementation 'net.sourceforge.tess4j:tess4j:5.10.0'

runtimeOnly 'com.mysql:mysql-connector-j'

compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

// https://mvnrepository.com/artifact/org.mockito/mockito-inline
testImplementation 'org.mockito:mockito-core:5.5.0'
// https://mvnrepository.com/artifact/org.mockito/mockito-core
testImplementation 'org.mockito:mockito-core:5.8.0'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void main(String[] args) throws IOException {
String last = newContent.substring(0, endIndex);
String replace = last.replace("</td><td class=\"ctr2\">", "-");
String[] split = replace.split("-");
System.out.println("increase test coverage to " + split[1]);
System.out.println("Test coverage is " + split[1]);
String percentString = split[1].replace("%", "");
int percent = Integer.parseInt(percentString);
String color;
Expand Down

0 comments on commit c7c1353

Please sign in to comment.