Skip to content

Dev #262

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

Merged
merged 7 commits into from
Feb 25, 2025
Merged
2 changes: 1 addition & 1 deletion .github/workflows/gradle_build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
arguments: build

- name: Publish Packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Package
path: build/libs
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ allprojects {
//===Unit tests===

testImplementation('org.junit.jupiter:junit-jupiter-api:5.11.3')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.10.3')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.12.0')

testImplementation 'org.mockito:mockito-core:5.14.2'
// https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
Expand All @@ -49,7 +49,7 @@ allprojects {
// Utils
implementation group: 'org.reflections', name: 'reflections', version: '0.10.2'

implementation group: 'org.jetbrains', name: 'annotations', version: '24.1.0'
implementation group: 'org.jetbrains', name: 'annotations', version: '26.0.2'
implementation 'org.apache.commons:commons-lang3:3.17.0'

implementation 'com.google.code.gson:gson:2.11.0'
Expand All @@ -61,7 +61,7 @@ allprojects {

//Java Persistence API
implementation('org.hibernate.orm:hibernate-core:6.6.3.Final')
implementation 'org.hibernate.orm:hibernate-c3p0:6.5.2.Final'
implementation 'org.hibernate.orm:hibernate-c3p0:6.6.9.Final'
implementation 'org.hibernate.orm:hibernate-community-dialects:6.5.2.Final'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.47.1.0'

Expand Down