Update configurate to fix issues with legacy guava compat

This commit is contained in:
Luck 2018-05-06 19:57:50 +01:00
parent 51f215b8ac
commit 804c884d8b
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
3 changed files with 16 additions and 16 deletions

View File

@ -111,7 +111,7 @@
<dependency> <dependency>
<groupId>me.lucko.configurate</groupId> <groupId>me.lucko.configurate</groupId>
<artifactId>configurate-core</artifactId> <artifactId>configurate-core</artifactId>
<version>3.4</version> <version>3.5</version>
<scope>provided</scope> <scope>provided</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
@ -124,7 +124,7 @@
<dependency> <dependency>
<groupId>me.lucko.configurate</groupId> <groupId>me.lucko.configurate</groupId>
<artifactId>configurate-yaml</artifactId> <artifactId>configurate-yaml</artifactId>
<version>3.4</version> <version>3.5</version>
<scope>provided</scope> <scope>provided</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
@ -137,7 +137,7 @@
<dependency> <dependency>
<groupId>me.lucko.configurate</groupId> <groupId>me.lucko.configurate</groupId>
<artifactId>configurate-gson</artifactId> <artifactId>configurate-gson</artifactId>
<version>3.4</version> <version>3.5</version>
<scope>provided</scope> <scope>provided</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
@ -150,14 +150,14 @@
<dependency> <dependency>
<groupId>me.lucko.configurate</groupId> <groupId>me.lucko.configurate</groupId>
<artifactId>configurate-hocon</artifactId> <artifactId>configurate-hocon</artifactId>
<version>3.4</version> <version>3.5</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- configurate toml --> <!-- configurate toml -->
<dependency> <dependency>
<groupId>me.lucko.configurate</groupId> <groupId>me.lucko.configurate</groupId>
<artifactId>configurate-toml</artifactId> <artifactId>configurate-toml</artifactId>
<version>3.4</version> <version>3.5</version>
<scope>provided</scope> <scope>provided</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>

View File

@ -170,29 +170,29 @@ public enum Dependency {
CONFIGURATE_CORE( CONFIGURATE_CORE(
"me{}lucko{}configurate", "me{}lucko{}configurate",
"configurate-core", "configurate-core",
"3.4", "3.5",
"XetsTkFaqO7NS7wpGyTK68P29AUl+NsbLZIldvvXUAg=", "J+1WnX1g5gr4ne8qA7DuBadLDOsZnOZjwHbdRmVgF6c=",
Relocation.of("configurate", "ninja{}leaping{}configurate") Relocation.of("configurate", "ninja{}leaping{}configurate")
), ),
CONFIGURATE_GSON( CONFIGURATE_GSON(
"me{}lucko{}configurate", "me{}lucko{}configurate",
"configurate-gson", "configurate-gson",
"3.4", "3.5",
"1Glt4ijo6xQ8MatviUO+36AbZH5qR+f3tWx466iYZug=", "Q3wp3xpqy41bJW3yUhbHOzm+NUkT4bUUBI2/AQLaa3c=",
Relocation.of("configurate", "ninja{}leaping{}configurate") Relocation.of("configurate", "ninja{}leaping{}configurate")
), ),
CONFIGURATE_YAML( CONFIGURATE_YAML(
"me{}lucko{}configurate", "me{}lucko{}configurate",
"configurate-yaml", "configurate-yaml",
"3.4", "3.5",
"icv/JayTYDOSCpbm60qU7EccSxUYVVXQOU7CFZqUK2Y=", "Dxr1o3EPbpOOmwraqu+cors8O/nKwJnhS5EiPkTb3fc=",
Relocation.of("configurate", "ninja{}leaping{}configurate") Relocation.of("configurate", "ninja{}leaping{}configurate")
), ),
CONFIGURATE_HOCON( CONFIGURATE_HOCON(
"me{}lucko{}configurate", "me{}lucko{}configurate",
"configurate-hocon", "configurate-hocon",
"3.4", "3.5",
"A27PLuPnh/rlpcHIABCwjo4QPvjUXaKRUh7sMvbp+Y0=", "sOym1KPmQylGSfk90ZFqobuvoZfEWb7XMmMBwbHuxFw=",
Relocation.allOf( Relocation.allOf(
Relocation.of("configurate", "ninja{}leaping{}configurate"), Relocation.of("configurate", "ninja{}leaping{}configurate"),
Relocation.of("hocon", "com{}typesafe{}config") Relocation.of("hocon", "com{}typesafe{}config")
@ -208,8 +208,8 @@ public enum Dependency {
CONFIGURATE_TOML( CONFIGURATE_TOML(
"me{}lucko{}configurate", "me{}lucko{}configurate",
"configurate-toml", "configurate-toml",
"3.4", "3.5",
"skbgSFsBg6wVeudWyCYIzJpz+Ia3CSTVLCGlnF4XD+A=", "U8p0XSTaNT/uebvLpO/vb6AhVGQDYiZsauSGB9zolPU=",
Relocation.allOf( Relocation.allOf(
Relocation.of("configurate", "ninja{}leaping{}configurate"), Relocation.of("configurate", "ninja{}leaping{}configurate"),
Relocation.of("toml4j", "com{}moandjiezana{}toml") Relocation.of("toml4j", "com{}moandjiezana{}toml")

View File

@ -182,7 +182,7 @@
<dependency> <dependency>
<groupId>me.lucko.configurate</groupId> <groupId>me.lucko.configurate</groupId>
<artifactId>configurate-hocon</artifactId> <artifactId>configurate-hocon</artifactId>
<version>3.4</version> <version>3.5</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>