Skip to content

Commit

Permalink
Merge pull request #47 from OnixByte/develop
Browse files Browse the repository at this point in the history
fix: fix ci error
  • Loading branch information
zihluwang authored Jan 25, 2025
2 parents 2efe577 + b60d6c2 commit 8e6ba32
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@

package com.onixbyte.devkit.core.exceptions;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Slf4j
public class NotImplementationExceptionTest {

private final static Logger log = LoggerFactory.getLogger(NotImplementationExceptionTest.class);

@Test
public void testExceptionWithEmptyConstructor() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@

package com.onixbyte.devkit.utils;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Slf4j
public class TestAesUtil {

private final static Logger log = LoggerFactory.getLogger(TestAesUtil.class);

@Test
public void testGenerateRandomSecret() {
log.info("Secret is {}", AesUtil.generateRandomSecret());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@

package com.onixbyte.devkit.utils;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Slf4j
public class TestBase64Util {

private final static Logger log = LoggerFactory.getLogger(TestBase64Util.class);

@Test
public void testEncode() {
Assertions.assertEquals("SGVsbG8gV29ybGQ=", Base64Util.encode("Hello World"));
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
# limitations under the License.
#

jacksonVersion=2.18.0
jacksonVersion=2.18.2
javaJwtVersion=4.4.0
junitVersion=5.11.2
logbackVersion=1.5.10
junitVersion=5.11.4
logbackVersion=1.5.16
slf4jVersion=2.0.16
springVersion=6.1.13
springBootVersion=3.3.4
springVersion=6.2.1
springBootVersion=3.4.1

artefactVersion=1.8.0
projectUrl=https://onixbyte.com/JDevKit
Expand Down

0 comments on commit 8e6ba32

Please sign in to comment.