Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id "java"
id "com.diffplug.spotless" version "8.0.0"
id "com.diffplug.spotless" version "8.4.0"
id "io.spring.dependency-management" version "1.1.7"
id 'org.springframework.boot' version '4.0.0'
id 'org.springframework.boot' version '4.0.6'
}

repositories {
Expand All @@ -20,15 +20,15 @@ group = "it.chalmers"
dependencies {
annotationProcessor(
// Used to generate Record Builder classes
"io.soabase.record-builder:record-builder-processor:41",
"io.soabase.record-builder:record-builder-processor:52",
)

implementation(
// Used to generate Record Builder classes
"io.soabase.record-builder:record-builder-core:41",
"io.soabase.record-builder:record-builder-core:52",

// Used to handle SQL specific errors
"org.postgresql:postgresql:42.7.3",
"org.postgresql:postgresql:42.7.11",

// Spring Boot
"org.springframework.boot:spring-boot-starter-data-jpa",
Expand All @@ -48,14 +48,14 @@ dependencies {

compileOnly(
// Testcontainers for local dev service startup
"org.testcontainers:testcontainers:1.21.4",
"org.testcontainers:postgresql:1.21.4",
"org.testcontainers:testcontainers:2.0.5",
"org.testcontainers:testcontainers-postgresql:2.0.5",
)

developmentOnly(
// Testcontainers for local dev service startup
"org.testcontainers:testcontainers:1.21.4",
"org.testcontainers:postgresql:1.21.4",
"org.testcontainers:testcontainers:2.0.5",
"org.testcontainers:testcontainers-postgresql:2.0.5",
)

runtimeOnly(
Expand All @@ -68,13 +68,13 @@ dependencies {
"org.springframework.boot:spring-boot-starter-thymeleaf",

// Thymeleaf
"org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.2.RELEASE",
"org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.5.RELEASE",

// web dependencies
"org.webjars.npm:htmx.org:1.9.12",
"org.webjars.npm:hyperscript.org:0.9.12",
"org.webjars.npm:picocss__pico:2.0.6",
"org.webjars.npm:sortablejs:1.15.3"
"org.webjars.npm:htmx.org:2.0.10",
"org.webjars.npm:hyperscript.org:0.9.91",
"org.webjars.npm:picocss__pico:2.1.1",
"org.webjars.npm:sortablejs:1.15.7"
)
}

Expand Down
12 changes: 6 additions & 6 deletions app/src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="color-scheme" content="light dark" />
<link rel="shortcut icon" type="image/svg" th:href="@{/img/itlogo.svg}" />

<link rel="stylesheet" th:href="@{/webjars/picocss__pico/2.0.6/css/pico.green.min.css}" />
<link rel="stylesheet" th:href="@{/webjars/picocss__pico/2.1.1/css/pico.green.min.css}" />
<link rel="stylesheet" th:href="@{/css/main.css}" />

<meta name="htmx-config"
Expand All @@ -22,11 +22,11 @@
}'
>

<script th:src="@{/webjars/htmx.org/1.9.12/dist/htmx.min.js}"></script>
<script th:src="@{/webjars/htmx.org/1.9.12/dist/ext/loading-states.js}"></script>
<script th:src="@{/webjars/htmx.org/1.9.12/dist/ext/response-targets.js}"></script>
<script th:src="@{/webjars/hyperscript.org/0.9.12/dist/_hyperscript.min.js}"></script>
<script th:src="@{/webjars/sortablejs/1.15.3/Sortable.min.js}"></script>
<script th:src="@{/webjars/htmx.org/2.0.10/dist/htmx.min.js}"></script>
<script th:src="@{/webjars/htmx.org/2.0.10/dist/ext/loading-states.js}"></script>
<script th:src="@{/webjars/htmx.org/2.0.10/dist/ext/response-targets.js}"></script>
<script th:src="@{/webjars/hyperscript.org/0.9.91/dist/_hyperscript.min.js}"></script>
<script th:src="@{/webjars/sortablejs/1.15.7/Sortable.min.js}"></script>

<script th:src="@{/js/reorder.js}"></script>
<script th:src="@{/js/posts-sortable.js}"></script>
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading