Minor upstream file changes

This commit is contained in:
MattBDev 2020-01-29 16:13:28 -05:00
parent bef69b5be3
commit 2cc66b0d98
6 changed files with 15 additions and 10 deletions

View File

@ -48,7 +48,7 @@ Ready to submit? Perform the checklist below:
the team prior to starting work. the team prior to starting work.
6. Are my commit messages descriptive? 6. Are my commit messages descriptive?
You should be aware of `git rebase`. You should be aware of [`git rebase`](http://learn.github.com/p/rebasing.html).
It allows you to modify existing commit messages, and combine, break apart, or It allows you to modify existing commit messages, and combine, break apart, or
adjust past changes. adjust past changes.

View File

@ -18,7 +18,7 @@
--> -->
<!-- <!--
<module name="ImportControl"> <module name="ImportControl">
<property name="file" value="import-control.xml"/> <property name="file" value="${config_loc}/import-control.xml"/>
</module> </module>
--> -->

View File

@ -44,6 +44,10 @@
<allow pkg="com.google.auto"/> <allow pkg="com.google.auto"/>
<allow pkg="it.unimi.dsi.fastutil"/> <allow pkg="it.unimi.dsi.fastutil"/>
<subpackage name="util.io.file">
<allow pkg="net.java.truevfs"/>
</subpackage>
<subpackage name="internal.expression"> <subpackage name="internal.expression">
<allow pkg="org.antlr.v4"/> <allow pkg="org.antlr.v4"/>
</subpackage> </subpackage>

View File

@ -1,13 +1,11 @@
group=com.sk89q.worldedit group=com.sk89q.worldedit
#version=7.1.0-SNAPSHOT #version=7.1.0-SNAPSHOT
#org.gradle.jvmargs=-Xmx1G org.gradle.jvmargs=-Xmx1G
org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.daemon=true org.gradle.daemon=true
org.gradle.configureondemand=true org.gradle.configureondemand=true
org.gradle.parallel=true org.gradle.parallel=true
org.gradle.caching=true org.gradle.caching=true
loom.version=0.2.6-20191213.183106-50
loom.version=0.2.5-20190906.190953-30 mixin.version=0.8+build.17
mixin.version=0.7.11.38

View File

@ -25,7 +25,6 @@ repositories {
configurations.all { configurations.all {
resolutionStrategy { resolutionStrategy {
force()
force("com.google.guava:guava:21.0") force("com.google.guava:guava:21.0")
} }
} }
@ -69,6 +68,10 @@ tasks.named<Copy>("processResources") {
filesMatching("plugin.yml") { filesMatching("plugin.yml") {
expand("internalVersion" to project.ext["internalVersion"]) expand("internalVersion" to project.ext["internalVersion"])
} }
from(zipTree("src/main/resources/worldedit-adapters.jar").matching {
exclude("META-INF/")
})
exclude("**/worldedit-adapters.jar")
} }
tasks.named<Jar>("jar") { tasks.named<Jar>("jar") {