Skip to content

Commit

Permalink
Move plugin to root
Browse files Browse the repository at this point in the history
  • Loading branch information
gabber235 committed Dec 2, 2023
1 parent 35dfac5 commit cb2c008
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
jdk:
- openjdk17

before_install:
- echo "Before install"
# Delete all folders and files, except .git, and plugin and move the content of `plugin` folder to the root
- find . -maxdepth 1 ! -name 'plugin' ! -name '.git' ! -name '.' -exec rm -rf {} +
- mv plugin/* .
- rm -rf plugin
install:
- echo "Installing with custom commands"
- plugin/gradlew clean build publishToMavenLocal -xtest
- ./gradlew clean build publishToMavenLocal -xtest

0 comments on commit cb2c008

Please sign in to comment.