We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085016b commit b56388dCopy full SHA for b56388d
pom.xml
@@ -30,6 +30,24 @@
30
<properties>
31
<maven.compiler.source>1.8</maven.compiler.source>
32
<maven.compiler.target>1.8</maven.compiler.target>
33
+ <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
34
</properties>
35
36
+ <build>
37
+ <plugins>
38
+ <plugin>
39
+ <groupId>org.apache.maven.plugins</groupId>
40
+ <artifactId>maven-source-plugin</artifactId>
41
+ <version>${maven-source-plugin.version}</version>
42
+ <executions>
43
+ <execution>
44
+ <id>attach-sources</id>
45
+ <goals>
46
+ <goal>jar</goal>
47
+ </goals>
48
+ </execution>
49
+ </executions>
50
+ </plugin>
51
+ </plugins>
52
+ </build>
53
</project>
0 commit comments