File tree Expand file tree Collapse file tree 6 files changed +10
-8
lines changed
resources/META-INF/services Expand file tree Collapse file tree 6 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 8686 </dependency >
8787 <dependency >
8888 <groupId >io.javaoperatorsdk</groupId >
89- <artifactId >sample -index-processor</artifactId >
89+ <artifactId >test -index-processor</artifactId >
9090 <version >${project.version} </version >
9191 <scope >test</scope >
9292 <optional >true</optional >
124124 <annotationProcessorPaths >
125125 <path >
126126 <groupId >io.javaoperatorsdk</groupId >
127- <artifactId >sample -index-processor</artifactId >
127+ <artifactId >test -index-processor</artifactId >
128128 <version >${project.version} </version >
129129 </path >
130130 </annotationProcessorPaths >
Original file line number Diff line number Diff line change 3636 <module >sample-operators</module >
3737 <module >caffeine-bounded-cache-support</module >
3838 <module >bootstrapper-maven-plugin</module >
39- <module >sample -index-processor</module >
39+ <module >test -index-processor</module >
4040 </modules >
4141
4242 <scm >
Original file line number Diff line number Diff line change 88 <version >5.1.6-SNAPSHOT</version >
99 </parent >
1010
11- <artifactId >sample -index-processor</artifactId >
12- <name >Sample Index Annotation Processor</name >
13- <description >Annotation processor for generating integration test sample documentation</description >
11+ <artifactId >test -index-processor</artifactId >
12+ <name >Test Index Annotation Processor</name >
13+ <description >Annotation processor for generating integration test index documentation</description >
1414
1515 <dependencies >
1616 <!-- No dependencies needed for a simple annotation processor -->
File renamed without changes.
Original file line number Diff line number Diff line change @@ -72,11 +72,13 @@ private void generateMarkdownFile() {
7272
7373 try (BufferedWriter writer = new BufferedWriter (file .openWriter ())) {
7474 writer .write ("---\n " );
75- writer .write ("title: Test Index\n " );
75+ writer .write ("title: Integration Test Index\n " );
7676 writer .write ("weight: 105\n " );
7777 writer .write ("---\n \n " );
7878 writer .write (
79- "This document provides an index of all integration tests annotated with @Sample.\n \n " );
79+ "This document provides an index of all integration tests annotated with @Sample.\n \n "
80+ + "These server also as sample for various use cases. "
81+ + "Your are encouraged to both the tests and descriptions.\n \n " );
8082
8183 // Generate table of contents
8284 writer .write ("## Contents\n \n " );
File renamed without changes.
You can’t perform that action at this time.
0 commit comments