chore: rebrand

This commit is contained in:
zaaarf 2024-01-24 16:33:26 +01:00
parent 324d7e24e5
commit 304d2a9ad6
No known key found for this signature in database
GPG key ID: 102E445F4C3F829B
6 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
# Route Compass
# Route Cartographer
An annotation processor that reads Spring Web's annotations to write down a map of all the routes in your projects: their paths, parameters, methods...
It's a small program I found myself needing at work. Don't count on it being production-ready.

View file

@ -1,2 +1,2 @@
rootProject.name = 'route-compass'
rootProject.name = 'route-cartographer'

View file

@ -1,4 +1,4 @@
package foo.zaaarf.routecompass;
package foo.zaaarf.routecartographer;
import org.springframework.web.bind.annotation.RequestMethod;

View file

@ -1,4 +1,4 @@
package foo.zaaarf.routecompass;
package foo.zaaarf.routecartographer;
import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
@ -27,7 +27,7 @@ import java.util.stream.Collectors;
* The main processor class.
*/
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class RouteCompass extends AbstractProcessor {
public class RouteCartographer extends AbstractProcessor {
/**
* The filename of the output.
@ -47,7 +47,7 @@ public class RouteCompass extends AbstractProcessor {
/**
* Default constructor, it only initialises {@link #annotationClasses}.
*/
public RouteCompass() {
public RouteCartographer() {
this.annotationClasses.add(RequestMapping.class);
this.annotationClasses.add(GetMapping.class);
this.annotationClasses.add(PostMapping.class);

View file

@ -1 +1 @@
foo.zaaarf.routecompass.RouteCompass,isolating
foo.zaaarf.routecartographer.RouteCartographer,isolating

View file

@ -1 +1 @@
foo.zaaarf.routecompass.RouteCompass
foo.zaaarf.routecartographer.RouteCartographer