Skip to content

Commit e86aebb

Browse files
committed
Skip maven-site-plugin when building spring-batch-bom module
1 parent f76f1c9 commit e86aebb

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

spring-batch-bom/pom.xml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.springframework.batch</groupId>
4+
<parent>
5+
<groupId>org.springframework.batch</groupId>
6+
<artifactId>spring-batch</artifactId>
7+
<version>5.0.0-SNAPSHOT</version>
8+
</parent>
59
<artifactId>spring-batch-bom</artifactId>
10+
<packaging>pom</packaging>
611
<name>Spring Batch BOM</name>
712
<description>Bill of materials for Spring Batch modules</description>
8-
<version>5.0.0-SNAPSHOT</version>
9-
<packaging>pom</packaging>
1013
<url>https://projects.spring.io/spring-batch</url>
1114

1215
<organization>
@@ -63,4 +66,17 @@
6366
</dependencies>
6467
</dependencyManagement>
6568

69+
<build>
70+
<plugins>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-site-plugin</artifactId>
74+
<version>${maven-site-plugin.version}</version>
75+
<configuration>
76+
<skip>true</skip>
77+
</configuration>
78+
</plugin>
79+
</plugins>
80+
</build>
81+
6682
</project>

0 commit comments

Comments
 (0)