mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-22 02:25:53 +01:00
f57f10ecd5
This commit converts the project from Maven to Gradle by removing the old Maven-related files such as `pom.xml` and the Maven Wrapper, and replacing them with their Gradle counterparts (more or less). Comparing the artifacts from Maven and Gradle indicates no significant differences in the resulting jar-files, and a quick test of the plugin shows that things are still working as expected. Bits of `build.gradle.kts` may need a bit of a tune-up later down the road, e.g. the test sources "hack" put in place. It may be cleaner to omit this hack and just suck up having to repeat dependencies, but in that case, it might be better to embrace the "libs" file instead of having to repeat dependencies in full. Note that this commit changes the caching mechanism used in the GitHub Actions build workflow, opting for the one built into `setup-java`.
12 lines
71 B
Plaintext
12 lines
71 B
Plaintext
# Java
|
|
*.class
|
|
|
|
# Gradle
|
|
.gradle/
|
|
build/
|
|
|
|
# IntelliJ
|
|
.idea/
|
|
*.iml
|
|
out/
|