Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Jul 3, 2024
1 parent ff2f768 commit c34b10b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*
* @author Andy Wilkinson
*/
public final class TestBuildScanConfiguration implements BuildScanConfiguration {
class TestBuildScanConfiguration implements BuildScanConfiguration {

final TestBuildScanDataObfuscation obfuscation = new TestBuildScanDataObfuscation();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*
* @author Andy Wilkinson
*/
final class TestProcessRunner implements ProcessRunner {
class TestProcessRunner implements ProcessRunner {

final Map<List<String>, String> commandLineOutput = new HashMap<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @param <T> type of the value of the property
* @author Andy Wilkinson
*/
public class TestProperty<T> implements Property<T> {
class TestProperty<T> implements Property<T> {

private T value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/
@Component(role = DevelocityListener.class, hint = "convention-develocity-maven-extension",
description = "Develocity conventions Maven extension")
public final class ConventionsDevelocityListener implements DevelocityListener {
public class ConventionsDevelocityListener implements DevelocityListener {

@Override
public void configure(DevelocityApi develocity, MavenSession MavenSession) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
import com.gradle.develocity.agent.maven.api.scan.BuildScanPublishing.PublishingContext;
import io.spring.develocity.conventions.core.ConfigurableBuildScan;

/**
* {@link ConfigurableBuildScan} for Maven builds.
*
* @author Andy Wilkinson
*/
class MavenConfigurableBuildScan implements ConfigurableBuildScan {

private final BuildScanApi buildScan;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
*
* @author Andy Wilkinson
*/
public class MavenConfigurableBuildScanTests {
class MavenConfigurableBuildScanTests {

private final TestBuildScanApi buildScanApi = new TestBuildScanApi();

Expand Down

0 comments on commit c34b10b

Please sign in to comment.