Skip to content

Commit

Permalink
Merge pull request #32898 from aloubyansky/exclude-gradle-wrapper-dot…
Browse files Browse the repository at this point in the history
…-gradle

Exclude gradle-wrapper/.gradle dir from the codestarts artifact
  • Loading branch information
maxandersen authored Apr 26, 2023
2 parents 20a98b1 + d3ba6a1 commit e008d87
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions devtools/project-core-extension-codestarts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@
<filtering>true</filtering>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>gradle-wrapper/.gradle/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down

0 comments on commit e008d87

Please sign in to comment.