-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #547 from gradle/asodja/maintenance
Update wrapper and Develocity plugin
- Loading branch information
Showing
9 changed files
with
79 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-rc-4-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 46 additions & 13 deletions
59
...plugin/src/main/java/org/gradle/profiler/studio/plugin/DefaultGradleSettingsListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,60 @@ | ||
package org.gradle.profiler.studio.plugin; | ||
|
||
import java.util.Collection; | ||
import java.util.Set; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.annotations.Nullable; | ||
import org.jetbrains.plugins.gradle.settings.DistributionType; | ||
import org.jetbrains.plugins.gradle.settings.GradleProjectSettings; | ||
import org.jetbrains.plugins.gradle.settings.GradleSettingsListener; | ||
import org.jetbrains.plugins.gradle.settings.TestRunner; | ||
|
||
import java.util.Collection; | ||
import java.util.Set; | ||
|
||
/** | ||
* A default implementation of GradleSettingsListener that does nothing. | ||
*/ | ||
public class DefaultGradleSettingsListener implements GradleSettingsListener { | ||
@Override public void onProjectsLinked(@NotNull Collection<GradleProjectSettings> settings) { } | ||
@Override public void onGradleHomeChange(@Nullable String oldPath, @Nullable String newPath, @NotNull String linkedProjectPath) { } | ||
@Override public void onGradleDistributionTypeChange(DistributionType currentValue, @NotNull String linkedProjectPath) { } | ||
@Override public void onServiceDirectoryPathChange(@Nullable String oldPath, @Nullable String newPath) { } | ||
@Override public void onGradleVmOptionsChange(@Nullable String oldOptions, @Nullable String newOptions) { } | ||
@Override public void onBuildDelegationChange(boolean delegatedBuild, @NotNull String linkedProjectPath) { } | ||
@Override public void onTestRunnerChange(@NotNull TestRunner currentTestRunner, @NotNull String linkedProjectPath) { } | ||
@Override public void onProjectRenamed(@NotNull String oldName, @NotNull String newName) { } | ||
@Override public void onProjectsUnlinked(@NotNull Set<String> linkedProjectPaths) { } | ||
@Override public void onBulkChangeStart() { } | ||
@Override public void onBulkChangeEnd() { } | ||
@Override | ||
public void onProjectsLinked(@NotNull Collection<GradleProjectSettings> settings) { | ||
} | ||
|
||
@Override | ||
public void onGradleHomeChange(@Nullable String oldPath, @Nullable String newPath, @NotNull String linkedProjectPath) { | ||
} | ||
|
||
@Override | ||
public void onGradleDistributionTypeChange(DistributionType currentValue, @NotNull String linkedProjectPath) { | ||
} | ||
|
||
@Override | ||
public void onServiceDirectoryPathChange(@Nullable String oldPath, @Nullable String newPath) { | ||
} | ||
|
||
@Override | ||
public void onGradleVmOptionsChange(@Nullable String oldOptions, @Nullable String newOptions) { | ||
} | ||
|
||
@Override | ||
public void onBuildDelegationChange(boolean delegatedBuild, @NotNull String linkedProjectPath) { | ||
} | ||
|
||
@Override | ||
public void onTestRunnerChange(@NotNull TestRunner currentTestRunner, @NotNull String linkedProjectPath) { | ||
} | ||
|
||
@Override | ||
public void onProjectRenamed(@NotNull String oldName, @NotNull String newName) { | ||
} | ||
|
||
@Override | ||
public void onProjectsUnlinked(@NotNull Set<String> linkedProjectPaths) { | ||
} | ||
|
||
@Override | ||
public void onBulkChangeStart() { | ||
} | ||
|
||
@Override | ||
public void onBulkChangeEnd() { | ||
} | ||
} |