@@ -41,27 +41,27 @@ plugin/
4141│ ├── conf/
4242│ │ ├── application.yml # Plugin-specific config defaults
4343│ ├── controllers/ # Interceptors, controller-scoped artifacts
44- │ │ └── org/grails/plugins/servertiming /
45- │ │ └── ServerTimingInterceptor .groovy
44+ │ │ └── org/grails/plugins/exampleplugin /
45+ │ │ └── ExamplePluginInterceptor .groovy
4646└── src/
4747 ├── main/groovy/ # Core plugin classes
48- │ └── org/grails/plugins/servertiming /
49- │ ├── ServerTimingAutoConfiguration .groovy
50- │ ├── ServerTimingFilter .groovy
51- │ ├── ServerTimingGrailsPlugin .groovy
52- │ ├── ServerTimingResponseWrapper .groovy
48+ │ └── org/grails/plugins/exampleplugin /
49+ │ ├── ExamplePluginAutoConfiguration .groovy
50+ │ ├── ExamplePluginFilter .groovy
51+ │ ├── ExamplePluginGrailsPlugin .groovy
52+ │ ├── ExamplePluginResponseWrapper .groovy
5353 │ ├── config/
5454 │ │ ├── EnabledCondition.groovy
55- │ │ └── ServerTimingConfig .groovy
55+ │ │ └── ExamplePluginConfig .groovy
5656 │ └── core/
5757 │ ├── Metric.groovy
5858 │ └── TimingMetric.groovy
59- ├── main/resources/
59+ ├── main/resources/
6060 │ ├── META-INF/spring
6161 │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
62- │ └── spring-configuration-metadata.json
62+ │ └── spring-configuration-metadata.json
6363 └── test/groovy/ # Unit tests ONLY
64- └── org/grails/plugins/servertiming /
64+ └── org/grails/plugins/exampleplugin /
6565 ├── MetricSpec.groovy
6666 └── TimingMetricSpec.groovy
6767```
0 commit comments