Skip to content

Commit bc96e87

Browse files
Merge branch 'develop' into feature/tutorial-groups/tutorial-lectures
2 parents 460efed + 1e59d51 commit bc96e87

File tree

43 files changed

+2555
-595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2555
-595
lines changed

.idea/runConfigurations/Artemis_Server__Dev__BuildAgent_LocalCI_.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
id "com.github.andygoossens.modernizer" version "${modernizer_plugin_version}"
2020
id "com.github.ben-manes.versions" version "0.53.0"
2121
id "com.github.node-gradle.node" version "${gradle_node_plugin_version}"
22-
id "com.google.cloud.tools.jib" version "3.5.0"
22+
id "com.google.cloud.tools.jib" version "3.5.1"
2323
id "com.gorylenko.gradle-git-properties" version "2.5.3"
2424
id "io.spring.dependency-management" version "1.1.7"
2525
id "nebula.lint" version "21.1.3"
@@ -42,7 +42,7 @@ java {
4242
}
4343

4444
wrapper {
45-
gradleVersion = "9.2.0"
45+
gradleVersion = "9.2.1"
4646
}
4747

4848
node {
@@ -376,8 +376,8 @@ dependencies {
376376
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server:${spring_boot_version}"
377377
implementation "org.springframework.boot:spring-boot-starter-oauth2-client:${spring_boot_version}"
378378

379-
implementation "org.springframework.data:spring-data-jpa:3.5.5"
380-
implementation "org.springframework.data:spring-data-ldap:3.5.5"
379+
implementation "org.springframework.data:spring-data-jpa:3.5.6"
380+
implementation "org.springframework.data:spring-data-ldap:3.5.6"
381381
implementation "org.springframework.ldap:spring-ldap-core:3.3.4"
382382

383383
implementation "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:${spring_cloud_version}"
@@ -508,9 +508,9 @@ dependencies {
508508
testImplementation "io.github.classgraph:classgraph:4.8.184"
509509
testImplementation "org.awaitility:awaitility:4.3.0"
510510
testImplementation "org.apache.maven.shared:maven-invoker:3.3.0"
511-
testImplementation "org.gradle:gradle-tooling-api:9.2.0"
511+
testImplementation "org.gradle:gradle-tooling-api:9.2.1"
512512
testImplementation "org.apache.maven.surefire:surefire-report-parser:3.5.4"
513-
testImplementation "io.zonky.test:embedded-database-spring-test:2.7.0"
513+
testImplementation "io.zonky.test:embedded-database-spring-test:2.7.1"
514514
testImplementation "com.redis:testcontainers-redis:2.2.4"
515515
testImplementation "com.tngtech.archunit:archunit:1.4.1"
516516
testImplementation "org.skyscreamer:jsonassert:1.5.3"

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ npm_version=11.5.1
77

88
# Dependency versions
99
jhipster_dependencies_version=8.11.0
10-
spring_boot_version=3.5.7
11-
tomcat_version=10.1.48
12-
spring_framework_version=6.2.13
10+
spring_boot_version=3.5.8
11+
tomcat_version=10.1.49
12+
spring_framework_version=6.2.14
1313
spring_cloud_version=4.3.0
14-
spring_security_version=6.5.6
14+
spring_security_version=6.5.7
1515
# TODO: upgrading to 6.6.x currently leads to issues due to internal changes in Hibernate and potentially wrong use in Artemis server code. See https://hibernate.atlassian.net/browse/HHH-19249
1616
hibernate_version=6.5.3.Final
1717
opensaml_version=5.1.6
@@ -38,7 +38,7 @@ mysql_version=9.5.0
3838
micrometer_version=1.16.0
3939
snakeyaml_version=2.5
4040
helios_status_version=1.1.0
41-
commons_lang3_version=3.19.0
41+
commons_lang3_version=3.20.0
4242
commons_text_version=1.14.0
4343
redisson_version=3.52.0
4444

@@ -52,7 +52,7 @@ gradle_node_plugin_version=7.1.0
5252
apt_plugin_version=0.21
5353
liquibase_plugin_version=3.0.2
5454
modernizer_plugin_version=1.12.0
55-
spotless_plugin_version=8.0.0
55+
spotless_plugin_version=8.1.0
5656

5757
org.gradle.jvmargs=-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -Duser.country=US -Duser.language=en \
5858
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \

gradle/jacoco.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
ext {
22
// TODO: this should become 90% for INSTRUCTION and 0 for CLASS
33
//This also needs to be lowered if we merge nebula PRs
4-
AggregatedCoverageThresholds = ["INSTRUCTION": 0.865, "CLASS": 123]
4+
AggregatedCoverageThresholds = ["INSTRUCTION": 0.865, "CLASS": 132]
55
// TODO: each module should achieve 90% for INSTRUCTION and 0 for CLASS
66
ModuleCoverageThresholds = [
7-
"assessment" : ["INSTRUCTION": 0.926, "CLASS": 0],
8-
"athena" : ["INSTRUCTION": 0.879, "CLASS": 2],
9-
"atlas" : ["INSTRUCTION": 0.894, "CLASS": 4],
7+
"assessment" : ["INSTRUCTION": 0.923, "CLASS": 0],
8+
"athena" : ["INSTRUCTION": 0.855, "CLASS": 2],
9+
"atlas" : ["INSTRUCTION": 0.894, "CLASS": 6],
1010
"buildagent" : ["INSTRUCTION": 0.781, "CLASS": 0],
1111
"communication" : ["INSTRUCTION": 0.870, "CLASS": 6],
12-
"core" : ["INSTRUCTION": 0.815, "CLASS": 50],
13-
"exam" : ["INSTRUCTION": 0.915, "CLASS": 2],
12+
"core" : ["INSTRUCTION": 0.815, "CLASS": 52],
13+
"exam" : ["INSTRUCTION": 0.914, "CLASS": 3],
1414
"exercise" : ["INSTRUCTION": 0.913, "CLASS": 0],
1515
"fileupload" : ["INSTRUCTION": 0.946, "CLASS": 0],
1616
"hyperion" : ["INSTRUCTION": 0.700, "CLASS": 2],
1717
"iris" : ["INSTRUCTION": 0.772, "CLASS": 28],
18-
"lecture" : ["INSTRUCTION": 0.910, "CLASS": 1],
18+
"lecture" : ["INSTRUCTION": 0.900, "CLASS": 1],
1919
"lti" : ["INSTRUCTION": 0.888, "CLASS": 2],
2020
"modeling" : ["INSTRUCTION": 0.936, "CLASS": 0],
2121
"plagiarism" : ["INSTRUCTION": 0.908, "CLASS": 2],
22-
"programming" : ["INSTRUCTION": 0.834, "CLASS": 14],
23-
"quiz" : ["INSTRUCTION": 0.906, "CLASS": 2],
22+
"programming" : ["INSTRUCTION": 0.834, "CLASS": 26],
23+
"quiz" : ["INSTRUCTION": 0.865, "CLASS": 2],
2424
"text" : ["INSTRUCTION": 0.947, "CLASS": 1],
2525
"tutorialgroup" : ["INSTRUCTION": 0.915, "CLASS": 1],
2626
//Adjust this after we merge the corresponding PRs

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ module.exports = {
9494
coverageThreshold: {
9595
global: {
9696
statements: 90.10,
97-
branches: 76.40,
97+
branches: 76.50,
9898
functions: 84.10,
9999
lines: 90.10,
100100
},

0 commit comments

Comments
 (0)