Skip to content
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

chore(deps): update plugin com.gradle.develocity to v3.19 #2363

Merged
merged 2 commits into from
Dec 13, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 DiffPlug
* Copyright 2023-2024 DiffPlug
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,6 +27,7 @@
import java.nio.file.attribute.BasicFileAttributes;

import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import com.diffplug.spotless.ProcessRunner.Result;
Expand Down Expand Up @@ -67,6 +68,7 @@ void prettierTypescriptWithDefaultCache() throws Exception {
.doesNotContain("Using cached node_modules for");
}

@Disabled
@Test
void prettierTypescriptWithDefaultCacheIsReusedOnSecondRun() throws Exception {
String suffix = "ts";
Expand Down Expand Up @@ -109,6 +111,7 @@ void prettierTypescriptWithSpecificCache() throws Exception {
.doesNotContain("Using cached node_modules for");
}

@Disabled
@Test
void prettierTypescriptWithSpecificCacheIsUsedOnSecondRun() throws Exception {
String suffix = "ts";
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
// https://github.com/davidburstrom/version-compatibility-gradle-plugin/tags
id 'io.github.davidburstrom.version-compatibility' version '0.5.0' apply false
// https://plugins.gradle.org/plugin/com.gradle.develocity
id 'com.gradle.develocity' version '3.18.2'
id 'com.gradle.develocity' version '3.19'
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
id 'dev.equo.ide' version '1.7.7' apply false
}
Expand Down
Loading