Skip to content

Commit 03a17ac

Browse files
committed
wip
Signed-off-by: Attila Mészáros <[email protected]>
1 parent a61c3c0 commit 03a17ac

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

operator-framework/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
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>
@@ -124,7 +124,7 @@
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>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
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>

sample-index-processor/pom.xml renamed to test-index-processor/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
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 -->
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)