diff options
author | 2022-05-10 11:49:10 +0200 | |
---|---|---|
committer | 2022-05-10 11:49:10 +0200 | |
commit | 32774a0aa4f9ffd07297278a891672512d5605c1 (patch) | |
tree | b42ec66da3e1fb1a566727c2cf1ab8fea654ec07 | |
parent | 2bd6b46c35d21040034b8ec3f87bd6eb1b83c541 (diff) | |
download | csv-utils-32774a0aa4f9ffd07297278a891672512d5605c1.tar.gz csv-utils-32774a0aa4f9ffd07297278a891672512d5605c1.zip |
Add plugin to install sources
-rw-r--r-- | pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -71,5 +71,21 @@ </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>3.2.1</version> + <executions> + <execution> + <id>attach-sources</id> + <phase>verify</phase> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> </project> |