Skip to content

Commit

Permalink
Merge pull request #39 from quarkus-qe/feature/add-mvn-source-plugin
Browse files Browse the repository at this point in the history
Add Maven source plugin required by the release workflow
  • Loading branch information
michalvavrik authored Sep 25, 2024
2 parents f68f0da + 49b8e41 commit 9c079bb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<source-plugin.version>3.3.1</source-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-core.version>3.9.9</maven-core.version>
<maven-surefire-report-parser.version>3.5.0</maven-surefire-report-parser.version>
Expand Down Expand Up @@ -169,6 +170,20 @@
<stagingProgressTimeoutMinutes>60</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 9c079bb

Please sign in to comment.