Skip to content

Commit bebc154

Browse files
committed
refactor: rename SB starter to follow SB conventions
1 parent 9c1c559 commit bebc154

File tree

18 files changed

+9
-8
lines changed

18 files changed

+9
-8
lines changed

spring-boot-starter/pom.xml renamed to operator-framework-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>1.5.1-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>spring-boot-operator-framework-starter</artifactId>
12+
<artifactId>operator-framework-spring-boot-starter</artifactId>
1313
<name>Operator SDK - Spring Boot Starter</name>
1414
<description>Spring Boot starter for framework</description>
1515
<packaging>jar</packaging>

operator-framework/src/main/java/io/javaoperatorsdk/operator/config/runtime/AccumulativeMappingWriter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ public AccumulativeMappingWriter add(String key, String value) {
5656
}
5757

5858
/**
59-
* Generates or overrise the resource file with the given path ({@linkAccumulativeMappingWriter#resourcePath})
59+
* Generates or overrise the resource file with the given path
60+
* ({@linkAccumulativeMappingWriter#resourcePath})
6061
*/
6162
public void flush() {
6263
PrintWriter printWriter = null;

operator-framework/src/main/java/io/javaoperatorsdk/operator/config/runtime/TypeParameterResolver.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ public TypeParameterResolver(DeclaredType interestedClass, int interestedTypeArg
3030
}
3131

3232
/**
33-
* @param typeUtils Type utilities, During the annotation processing processingEnv.getTypeUtils()
34-
* can be passed.
33+
* @param typeUtils Type utilities, During the annotation processing processingEnv.getTypeUtils()
34+
* can be passed.
3535
* @param declaredType Class or Interface which extends or implements the interestedClass, and the
36-
* interest is getting the actual declared type is used.
36+
* interest is getting the actual declared type is used.
3737
* @return the type of the parameter if it can be resolved from the the given declareType,
38-
* otherwise it returns null
38+
* otherwise it returns null
3939
*/
4040
public TypeMirror resolve(Types typeUtils, DeclaredType declaredType) {
4141
final var chain = findChain(typeUtils, declaredType);

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<modules>
4444
<module>operator-framework-core</module>
4545
<module>operator-framework</module>
46-
<module>spring-boot-starter</module>
46+
<module>operator-framework-spring-boot-starter</module>
4747
<module>samples</module>
4848
<module>quarkus-extension</module>
4949
</modules>

samples/spring-boot-auto-config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</dependency>
2929
<dependency>
3030
<groupId>io.javaoperatorsdk</groupId>
31-
<artifactId>spring-boot-operator-framework-starter</artifactId>
31+
<artifactId>operator-framework-spring-boot-starter</artifactId>
3232
<version>${project.version}</version>
3333
</dependency>
3434
<dependency>

0 commit comments

Comments
 (0)