Skip to content

Commit

Permalink
Add test-inclusive packaging for plugin development
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonBein committed Jan 17, 2024
1 parent 7d1d303 commit dc36a43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ jobs:
- name: Create .zip
run: |
cd ./target/
mv ./*.jar ./scylla.jar
find ./ -type f -name '*.jar' ! -name '*test*' -exec mv {} ./scylla.jar \;
mv ./*tests.jar ./scylla-tests.jar
zip -r ../scylla.zip ./*.jar ./libs/*
cd ..
- name: Upload Zip
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,13 @@
</manifest>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit dc36a43

Please sign in to comment.