Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit b8ed705

Browse files
authored
Add sources jar to spring-cloud-dataflow-server (#5513)
1 parent 281a45e commit b8ed705

File tree

1 file changed

+15
-0
lines changed
  • spring-cloud-dataflow-server

1 file changed

+15
-0
lines changed

spring-cloud-dataflow-server/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2020
<java.version>1.8</java.version>
2121
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
22+
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
2223
<checkstyle.config.location>../src/checkstyle/checkstyle.xml</checkstyle.config.location>
2324
<failIfNoTests>true</failIfNoTests>
2425
</properties>
@@ -250,6 +251,20 @@
250251
</execution>
251252
</executions>
252253
</plugin>
254+
<plugin>
255+
<groupId>org.apache.maven.plugins</groupId>
256+
<artifactId>maven-source-plugin</artifactId>
257+
<version>${maven-source-plugin.version}</version>
258+
<executions>
259+
<execution>
260+
<id>source</id>
261+
<goals>
262+
<goal>jar</goal>
263+
</goals>
264+
<phase>package</phase>
265+
</execution>
266+
</executions>
267+
</plugin>
253268
<plugin>
254269
<groupId>org.springframework.boot</groupId>
255270
<artifactId>spring-boot-maven-plugin</artifactId>

0 commit comments

Comments
 (0)