Update EP and version on workshop branch

This commit is contained in:
Rick Ossendrijver
2025-04-16 11:22:38 +02:00
parent 1d457c73e1
commit 90fb015fa0
2 changed files with 6 additions and 7 deletions

View File

@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>tech.picnic.error-prone-support</groupId> <groupId>tech.picnic.error-prone-support</groupId>
<artifactId>error-prone-support</artifactId> <artifactId>error-prone-support</artifactId>
<version>0.19.2-SNAPSHOT</version> <version>0.22.1-SNAPSHOT</version>
</parent> </parent>
<artifactId>workshop</artifactId> <artifactId>workshop</artifactId>
@@ -16,27 +16,27 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId.error-prone}</groupId> <groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotation</artifactId> <artifactId>error_prone_annotation</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${groupId.error-prone}</groupId> <groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId> <artifactId>error_prone_annotations</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${groupId.error-prone}</groupId> <groupId>com.google.errorprone</groupId>
<artifactId>error_prone_check_api</artifactId> <artifactId>error_prone_check_api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${groupId.error-prone}</groupId> <groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId> <artifactId>error_prone_core</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${groupId.error-prone}</groupId> <groupId>com.google.errorprone</groupId>
<artifactId>error_prone_test_helpers</artifactId> <artifactId>error_prone_test_helpers</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>

View File

@@ -2,7 +2,6 @@ package tech.picnic.errorprone.workshop.refasterrules;
import com.google.errorprone.refaster.annotation.AfterTemplate; import com.google.errorprone.refaster.annotation.AfterTemplate;
import com.google.errorprone.refaster.annotation.BeforeTemplate; import com.google.errorprone.refaster.annotation.BeforeTemplate;
import org.springframework.context.annotation.Bean;
/** Refaster rule used as example for the assignments of the workshop. */ /** Refaster rule used as example for the assignments of the workshop. */
final class WorkshopAssignment0Rules { final class WorkshopAssignment0Rules {