Skip to content

Commit

Permalink
build: downgrade maven-sources-plugin from 3.3.0 to 3.2.1
Browse files Browse the repository at this point in the history
The new version of the plugin caused build failure because of duplicate configurations.

Before fixing the root cause, downgrade to the old version.
  • Loading branch information
saig0 committed Sep 21, 2023
1 parent a2ac85e commit 2c355cb
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@
<version>1.5.2</version>
</dependency>

<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -91,6 +85,17 @@
</dependencies>

<build>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 2c355cb

Please sign in to comment.