Skip to content

Commit cd18c84

Browse files
committed
Merge branch 'feature/project' into develop
2 parents de114ec + 9b8ee8c commit cd18c84

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Each project is configured in specific environments, as described below:
1414

1515
- C++ project: C++20 / [CMake](https://cmake.org/) build / [GNU Scientific Library (GSL)](https://www.gnu.org/software/gsl/), [Google Test](https://google.github.io/googletest/), [Google Benchmark](https://github.com/google/benchmark), [fmt](https://github.com/fmtlib/fmt) packages / [vcpkg](https://github.com/microsoft/vcpkg) package manager
1616
- Python project: Python 3.11 / [Poetry](https://python-poetry.org/) / [NumPy](https://numpy.org/), [SciPy](https://www.scipy.org/), [NetworkX](https://networkx.org/), [pytest](https://docs.pytest.org/), [pytest-benchmark](https://pytest-benchmark.readthedocs.io/en/latest/) packages
17-
- Java project: Java 17 / [Gradle](https://gradle.org/) build / [JUnit](https://junit.org/), [Java Microbenchmark Harness (JMH)](https://github.com/openjdk/jmh) libraries
17+
- Java project: Java 21 / [Gradle](https://gradle.org/) build / [Guava](https://github.com/google/guava), [JUnit](https://junit.org/), [Java Microbenchmark Harness (JMH)](https://github.com/openjdk/jmh) libraries
1818

1919
## Table of Contents
2020

README_ko-KR.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
- C++ project: C++20 / [CMake](https://cmake.org/) build / [GNU Scientific Library (GSL)](https://www.gnu.org/software/gsl/), [Google Test](https://google.github.io/googletest/), [Google Benchmark](https://github.com/google/benchmark), [fmt](https://github.com/fmtlib/fmt) packages / [vcpkg](https://github.com/microsoft/vcpkg) package manager
1616
- Python project: Python 3.11 / [Poetry](https://python-poetry.org/) / [NumPy](https://numpy.org/), [SciPy](https://www.scipy.org/), [NetworkX](https://networkx.org/), [pytest](https://docs.pytest.org/), [pytest-benchmark](https://pytest-benchmark.readthedocs.io/en/latest/) packages
17-
- Java project: Java 17 / [Gradle](https://gradle.org/) build / [JUnit](https://junit.org/), [Java Microbenchmark Harness (JMH)](https://github.com/openjdk/jmh) libraries
17+
- Java project: Java 21 / [Gradle](https://gradle.org/) build / [Guava](https://github.com/google/guava), [JUnit](https://junit.org/), [Java Microbenchmark Harness (JMH)](https://github.com/openjdk/jmh) libraries

java-algorithm/build.gradle.kts

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ plugins {
55
java
66
}
77

8-
group = "org.example"
9-
version = "1.0-SNAPSHOT"
8+
group = "org.example.algorithm"
9+
version = "1.0"
1010

1111
java {
12-
sourceCompatibility = JavaVersion.VERSION_17
13-
targetCompatibility = JavaVersion.VERSION_17
12+
sourceCompatibility = JavaVersion.VERSION_21
13+
targetCompatibility = JavaVersion.VERSION_21
1414
}
1515

1616
configurations {
@@ -47,26 +47,26 @@ repositories {
4747
}
4848

4949
dependencies {
50-
implementation("com.google.guava:guava:31.1-jre")
50+
implementation("com.google.guava:guava:33.0.0-jre")
5151
implementation("org.javatuples:javatuples:1.2")
52-
implementation("org.slf4j:slf4j-api:2.0.5")
53-
implementation("org.apache.logging.log4j:log4j-api:2.19.0")
54-
implementation("org.apache.logging.log4j:log4j-core:2.19.0")
55-
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0")
56-
compileOnly("org.projectlombok:lombok:1.18.24")
57-
annotationProcessor("org.projectlombok:lombok:1.18.24")
58-
annotationProcessor("org.openjdk.jmh:jmh-generator-annprocess:1.35")
5952

60-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
61-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.0")
62-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
53+
// test
54+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
55+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.10.2")
56+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.2")
6357
testImplementation("org.hamcrest:hamcrest-library:2.2")
64-
testImplementation("org.mockito:mockito-junit-jupiter:4.10.0")
65-
testImplementation("org.mockito:mockito-inline:4.10.0")
58+
testImplementation("org.mockito:mockito-junit-jupiter:5.10.0")
59+
60+
// jmh
61+
annotationProcessor("org.openjdk.jmh:jmh-generator-annprocess:1.35")
6662
testImplementation("org.openjdk.jmh:jmh-core:1.35")
63+
testAnnotationProcessor("org.openjdk.jmh:jmh-generator-annprocess:1.35")
64+
65+
// lombok
66+
compileOnly("org.projectlombok:lombok:1.18.24")
67+
annotationProcessor("org.projectlombok:lombok:1.18.24")
6768
testCompileOnly("org.projectlombok:lombok:1.18.24")
6869
testAnnotationProcessor("org.projectlombok:lombok:1.18.24")
69-
testAnnotationProcessor("org.openjdk.jmh:jmh-generator-annprocess:1.35")
7070
}
7171

7272
tasks.withType<JavaCompile> {
@@ -77,17 +77,17 @@ tasks.withType<Test> {
7777
useJUnitPlatform()
7878
testLogging {
7979
events(
80-
TestLogEvent.FAILED,
81-
TestLogEvent.PASSED,
82-
TestLogEvent.SKIPPED
80+
TestLogEvent.FAILED,
81+
TestLogEvent.PASSED,
82+
TestLogEvent.SKIPPED
8383
)
8484
debug {
8585
events(
86-
TestLogEvent.FAILED,
87-
TestLogEvent.PASSED,
88-
TestLogEvent.SKIPPED,
89-
TestLogEvent.STANDARD_OUT,
90-
TestLogEvent.STANDARD_ERROR
86+
TestLogEvent.FAILED,
87+
TestLogEvent.PASSED,
88+
TestLogEvent.SKIPPED,
89+
TestLogEvent.STANDARD_OUT,
90+
TestLogEvent.STANDARD_ERROR
9191
)
9292
showStackTraces = true
9393
exceptionFormat = TestExceptionFormat.FULL
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)