Skip to content

Commit bd8c282

Browse files
committed
Merge branch '3.x' of github.com:larsgrefer/dart-sass-java into 4.x
2 parents 5c8b177 + 9ce9c8c commit bd8c282

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/gradle-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
distribution: 'temurin'
1919

2020
- name: Setup Gradle
21-
uses: gradle/gradle-build-action@v3
21+
uses: gradle/actions/setup-gradle@v4
2222

2323
- run: env | grep "GIT"
2424

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
distribution: 'temurin'
3434

3535
- name: Setup Gradle
36-
uses: gradle/gradle-build-action@v3
36+
uses: gradle/actions/setup-gradle@v4
3737

3838
- run: java -XshowSettings:properties -version
3939
- run: env | grep "GIT"

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id "io.freefair.lombok" apply false
44
id "io.freefair.javadocs" apply false
55
id "io.freefair.github.dependency-submission"
6-
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
6+
id "io.github.gradle-nexus.publish-plugin" version "2.0.0"
77
}
88

99
nexusPublishing {
@@ -50,7 +50,7 @@ allprojects {
5050
testImplementation 'org.junit.jupiter:junit-jupiter-api'
5151
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
5252

53-
testImplementation 'ch.qos.logback:logback-classic:1.5.7'
53+
testImplementation 'ch.qos.logback:logback-classic:1.5.8'
5454
}
5555

5656
tasks.withType(Test).configureEach {

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-8.10-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

sass-embedded-host/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
3434
compileOnly 'javax.servlet:javax.servlet-api:4.0.1'
3535
compileOnly 'jakarta.servlet:jakarta.servlet-api:6.0.0'
36-
compileOnly 'org.apache.logging.log4j:log4j-api:2.23.1'
36+
compileOnly 'org.apache.logging.log4j:log4j-api:2.24.0'
3737
webjarsSupportImplementation "org.webjars:webjars-locator-core:0.59"
3838
compileOnly "org.jboss:jboss-vfs:3.3.2.Final"
3939

sass-embedded-protocol/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
}
2020
}
2121

22-
def protobufVersion = "4.28.0"
22+
def protobufVersion = "4.28.2"
2323

2424
tasks.withType(com.google.protobuf.gradle.ProtobufExtract).configureEach {
2525
doFirst {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pluginManagement {
1313
plugins {
1414
id 'io.freefair.settings.plugin-versions' version '8.10'
1515
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
16-
id "com.gradle.develocity" version "3.18"
16+
id "com.gradle.develocity" version "3.18.1"
1717
}
1818

1919
rootProject.name = 'dart-sass-java'

test-projects/graalvm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "application"
4-
id 'org.graalvm.buildtools.native' version '0.10.2'
4+
id 'org.graalvm.buildtools.native' version '0.10.3'
55
}
66

77
java {

test-projects/spring-boot-resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.3.3'
2+
id 'org.springframework.boot' version '3.3.4'
33
id 'io.spring.dependency-management' version '1.1.6'
44
id 'java'
55
}

0 commit comments

Comments
 (0)