Skip to content

Commit b98e608

Browse files
committed
fix: format after rebase
Signed-off-by: Attila Mészáros <csviri@gmail.com>
1 parent f6aac5d commit b98e608

File tree

1 file changed

+83
-95
lines changed

1 file changed

+83
-95
lines changed

pom.xml

Lines changed: 83 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -78,102 +78,90 @@
7878
<mustache.version>0.9.11</mustache.version>
7979
<commons.io.version>2.16.1</commons.io.version>
8080

81-
<fmt-maven-plugin.version>2.11</fmt-maven-plugin.version>
82-
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
83-
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
84-
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
85-
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
86-
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
87-
<maven-jar-plugin.version>3.4.1</maven-jar-plugin.version>
88-
<maven-clean-plugin.version>3.3.2</maven-clean-plugin.version>
89-
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
90-
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
91-
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
92-
<maven-install-plugin.version>3.1.2</maven-install-plugin.version>
93-
<git-commit-id-maven-plugin.version>8.0.2</git-commit-id-maven-plugin.version> <git-commit-id-maven-plugin.version>8.0.0</git-commit-id-maven-plugin.version>
94-
<jib-maven-plugin.version>3.4.1</jib-maven-plugin.version>
95-
<spotless.version>2.43.0</spotless.version>
96-
</properties>
81+
<fmt-maven-plugin.version>2.11</fmt-maven-plugin.version>
82+
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
83+
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
84+
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
85+
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
86+
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
87+
<maven-jar-plugin.version>3.4.1</maven-jar-plugin.version>
88+
<maven-clean-plugin.version>3.3.2</maven-clean-plugin.version>
89+
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
90+
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
91+
<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
92+
<maven-install-plugin.version>3.1.2</maven-install-plugin.version>
93+
<git-commit-id-maven-plugin.version>8.0.2</git-commit-id-maven-plugin.version>
94+
<jib-maven-plugin.version>3.4.1</jib-maven-plugin.version>
95+
<spotless.version>2.43.0</spotless.version>
96+
</properties>
9797

98-
<modules>
99-
<module>operator-framework-bom</module>
100-
<module>operator-framework-core</module>
101-
<module>operator-framework-junit5</module>
102-
<module>operator-framework</module>
103-
<module>micrometer-support</module>
104-
<module>sample-operators</module>
105-
<module>caffeine-bounded-cache-support</module>
106-
<module>bootstrapper-maven-plugin</module>
107-
</modules>
108-
109-
110-
<dependencyManagement>
111-
<dependencies>
112-
<dependency>
113-
<groupId>org.junit</groupId>
114-
<artifactId>junit-bom</artifactId>
115-
<version>${junit.version}</version>
116-
<type>pom</type>
117-
<scope>import</scope>
118-
</dependency>
119-
<dependency>
120-
<groupId>io.fabric8</groupId>
121-
<artifactId>kubernetes-client-bom</artifactId>
122-
<version>${fabric8-client.version}</version>
123-
<type>pom</type>
124-
<scope>import</scope>
125-
</dependency>
126-
<dependency>
127-
<groupId>io.fabric8</groupId>
128-
<artifactId>kubernetes-server-mock</artifactId>
129-
<version>${fabric8-client.version}</version>
130-
<scope>test</scope>
131-
</dependency>
132-
<dependency>
133-
<groupId>io.fabric8</groupId>
134-
<artifactId>kubernetes-client-api</artifactId>
135-
<version>${fabric8-client.version}</version>
136-
</dependency>
137-
<dependency>
138-
<groupId>org.apache.commons</groupId>
139-
<artifactId>commons-lang3</artifactId>
140-
<version>${commons-lang3.version}</version>
141-
</dependency>
142-
<dependency>
143-
<groupId>com.google.testing.compile</groupId>
144-
<artifactId>compile-testing</artifactId>
145-
<version>${compile-testing.version}</version>
146-
</dependency>
147-
<dependency>
148-
<groupId>io.micrometer</groupId>
149-
<artifactId>micrometer-core</artifactId>
150-
<version>${micrometer-core.version}</version>
151-
</dependency>
152-
<dependency>
153-
<groupId>com.squareup</groupId>
154-
<artifactId>javapoet</artifactId>
155-
<version>${javapoet.version}</version>
156-
</dependency>
157-
<dependency>
158-
<groupId>org.awaitility</groupId>
159-
<artifactId>awaitility</artifactId>
160-
<version>${awaitility.version}</version>
161-
</dependency>
162-
<dependency>
163-
<groupId>commons-io</groupId>
164-
<artifactId>commons-io</artifactId>
165-
<version>${commons.io.version}</version>
166-
</dependency>
167-
<dependency>
168-
<groupId>org.assertj</groupId>
169-
<artifactId>assertj-core</artifactId>
170-
<version>${assertj.version}</version>
171-
</dependency>
172-
<dependency>
173-
<groupId>org.mockito</groupId>
174-
<artifactId>mockito-core</artifactId>
175-
<version>${mokito.version}</version>
176-
</dependency>
98+
<dependencyManagement>
99+
<dependencies>
100+
<dependency>
101+
<groupId>org.junit</groupId>
102+
<artifactId>junit-bom</artifactId>
103+
<version>${junit.version}</version>
104+
<type>pom</type>
105+
<scope>import</scope>
106+
</dependency>
107+
<dependency>
108+
<groupId>io.fabric8</groupId>
109+
<artifactId>kubernetes-client-bom</artifactId>
110+
<version>${fabric8-client.version}</version>
111+
<type>pom</type>
112+
<scope>import</scope>
113+
</dependency>
114+
<dependency>
115+
<groupId>io.fabric8</groupId>
116+
<artifactId>kubernetes-server-mock</artifactId>
117+
<version>${fabric8-client.version}</version>
118+
<scope>test</scope>
119+
</dependency>
120+
<dependency>
121+
<groupId>io.fabric8</groupId>
122+
<artifactId>kubernetes-client-api</artifactId>
123+
<version>${fabric8-client.version}</version>
124+
</dependency>
125+
<dependency>
126+
<groupId>org.apache.commons</groupId>
127+
<artifactId>commons-lang3</artifactId>
128+
<version>${commons-lang3.version}</version>
129+
</dependency>
130+
<dependency>
131+
<groupId>com.google.testing.compile</groupId>
132+
<artifactId>compile-testing</artifactId>
133+
<version>${compile-testing.version}</version>
134+
</dependency>
135+
<dependency>
136+
<groupId>io.micrometer</groupId>
137+
<artifactId>micrometer-core</artifactId>
138+
<version>${micrometer-core.version}</version>
139+
</dependency>
140+
<dependency>
141+
<groupId>com.squareup</groupId>
142+
<artifactId>javapoet</artifactId>
143+
<version>${javapoet.version}</version>
144+
</dependency>
145+
<dependency>
146+
<groupId>org.awaitility</groupId>
147+
<artifactId>awaitility</artifactId>
148+
<version>${awaitility.version}</version>
149+
</dependency>
150+
<dependency>
151+
<groupId>commons-io</groupId>
152+
<artifactId>commons-io</artifactId>
153+
<version>${commons.io.version}</version>
154+
</dependency>
155+
<dependency>
156+
<groupId>org.assertj</groupId>
157+
<artifactId>assertj-core</artifactId>
158+
<version>${assertj.version}</version>
159+
</dependency>
160+
<dependency>
161+
<groupId>org.mockito</groupId>
162+
<artifactId>mockito-core</artifactId>
163+
<version>${mokito.version}</version>
164+
</dependency>
177165

178166
<dependency>
179167
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)