Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
added 1.17
Browse files Browse the repository at this point in the history
bumped version to 1.1
  • Loading branch information
rexlManu committed Jun 17, 2021
1 parent 2593952 commit 31ed5c7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: 'org.spongepowered.mixin'

version = '1.0'
version = '1.1'
group = 'de.rexlmanu' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'viaversion-addon'

Expand Down Expand Up @@ -109,6 +109,14 @@ dependencies {
}

jar {
// Removing files from dependencies
exclude(
"mcmod.info",
"fabric.mod.json",
"velocity-plugin.json",
"bungee.yml",
"plugin.yml",
)
// Excludes the start file
exclude("**/launch")
configurations.shade.each { dep ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

public class ProtocolScreen extends Screen {

private static List<Integer> BLOCKED_VERSIONS = ImmutableList.of(51, 60, 61, 73, 74, 77, 78, 4, 5, -1, 755);
private static List<Integer> BLOCKED_VERSIONS = ImmutableList.of(51, 60, 61, 73, 74, 77, 78, 4, 5, -1);

private Screen previousScreen;

Expand Down

0 comments on commit 31ed5c7

Please sign in to comment.