Skip to content

Commit 8e4ff45

Browse files
sbglasiusCopilot
andauthored
Fix references from grails-server-timing to grails-plugin-template
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent b9a012f commit 8e4ff45

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.skills/plugin-project.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)