mirror of
https://github.com/zaaarf/route-cartographer.git
synced 2024-11-12 23:59:20 +01:00
chore: rebrand
This commit is contained in:
parent
324d7e24e5
commit
304d2a9ad6
6 changed files with 8 additions and 8 deletions
|
@ -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.
|
|
@ -1,2 +1,2 @@
|
|||
rootProject.name = 'route-compass'
|
||||
rootProject.name = 'route-cartographer'
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package foo.zaaarf.routecompass;
|
||||
package foo.zaaarf.routecartographer;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
|
|
@ -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);
|
|
@ -1 +1 @@
|
|||
foo.zaaarf.routecompass.RouteCompass,isolating
|
||||
foo.zaaarf.routecartographer.RouteCartographer,isolating
|
|
@ -1 +1 @@
|
|||
foo.zaaarf.routecompass.RouteCompass
|
||||
foo.zaaarf.routecartographer.RouteCartographer
|
Loading…
Reference in a new issue