-
-
Notifications
You must be signed in to change notification settings - Fork 49
Update gradle to 7.4.2 #216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- nodejs 10 is eol
./gradlew shadowJar -p danger-kotlin-library | ||
./gradlew build -p danger-kotlin-kts | ||
./gradlew build -p danger-kotlin | ||
|
||
uninstall: | ||
rm -rf $(INSTALL_PATH) | ||
rm -f $(LIB_INSTALL_PATH)/danger-kotlin.jar | ||
rm -f $(LIB_FLAT_DIR) | ||
rm -rf $(LIB_FLAT_DIR) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was causing an error so I fixed it here.
provided | ||
compile.extendsFrom provided |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
implementation
replaced compile
and provided
didn't seem to be used in any special way, so I replaced all instances of provided
with implementation
. Let me know if I was off base here.
includeJar "org.jetbrains.kotlin:kotlin-main-kts:$versionKotlin" | ||
} | ||
|
||
shadowJar { | ||
baseName = 'danger-kotlin-kts' | ||
getArchiveBaseName().set('danger-kotlin-kts') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't set the other properties to ''
here because it doesn't look like anything is depending on the version not being in the filename.
Most of the changes are coming from updates to the wrapper scripts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Stacked on #215