Skip to content

Commit

Permalink
add sources and javadoc to release
Browse files Browse the repository at this point in the history
  • Loading branch information
paultuckey committed Oct 17, 2023
1 parent 178650a commit 7817bf2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -11,7 +11,8 @@ jobs:
- uses: actions/checkout@v3

# Do manually for now (Sep 2023)

#
# mvn deploy

# - name: Set up Java for publishing to Maven Central Repository
# uses: actions/setup-java@v3
Expand Down
17 changes: 17 additions & 0 deletions pom.xml
Expand Up @@ -155,6 +155,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -165,6 +173,15 @@
<quiet>true</quiet>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>main-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 7817bf2

Please sign in to comment.