Skip to content

Commit 4336e6c

Browse files
committed
skip spotless check and prunes dependency section
1 parent 58c326e commit 4336e6c

File tree

1 file changed

+13
-10
lines changed
  • client-java-contrib/admissionreview

1 file changed

+13
-10
lines changed

client-java-contrib/admissionreview/pom.xml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,32 @@
1717
<dependency>
1818
<groupId>io.swagger</groupId>
1919
<artifactId>swagger-annotations</artifactId>
20-
<version>${swagger-core-version}</version>
2120
</dependency>
2221
<dependency>
2322
<groupId>com.google.code.findbugs</groupId>
2423
<artifactId>jsr305</artifactId>
25-
<version>${findbugs-version}</version>
2624
</dependency>
2725
<dependency>
2826
<groupId>com.google.code.gson</groupId>
2927
<artifactId>gson</artifactId>
30-
<version>${gson-version}</version>
3128
</dependency>
3229
<dependency>
3330
<groupId>javax.annotation</groupId>
3431
<artifactId>javax.annotation-api</artifactId>
35-
<version>${javax-annotation-version}</version>
3632
<scope>provided</scope>
3733
</dependency>
3834
</dependencies>
39-
<properties>
40-
<findbugs-version>3.0.2</findbugs-version>
41-
<swagger-core-version>1.5.24</swagger-core-version>
42-
<gson-version>2.8.6</gson-version>
43-
<javax-annotation-version>1.3.2</javax-annotation-version>
44-
</properties>
35+
36+
<build>
37+
<plugins>
38+
<plugin>
39+
<groupId>com.diffplug.spotless</groupId>
40+
<artifactId>spotless-maven-plugin</artifactId>
41+
<version>2.12.1</version>
42+
<configuration>
43+
<skip>true</skip>
44+
</configuration>
45+
</plugin>
46+
</plugins>
47+
</build>
4548
</project>

0 commit comments

Comments
 (0)