Skip to content

Commit

Permalink
Added maven-source-plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
haumacher committed Dec 17, 2024
1 parent ed70f60 commit 2136f6a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,26 @@
</configuration>
</plugin>

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

<configuration>
<excludes>**/.srcexclude</excludes>
</configuration>

<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 2136f6a

Please sign in to comment.