Skip to content

Commit

Permalink
Merge pull request #64 from FlintMC/bugfix/i18n-annotation-processor
Browse files Browse the repository at this point in the history
Re-add i18n 1.15 annotation processor
  • Loading branch information
R0bbyYT committed Dec 25, 2020
2 parents 577b983 + 0c2d293 commit 079be09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 2 additions & 4 deletions util/i18n/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ plugins {
group = "net.flintmc"

dependencies {
minecraft("1.15.2"){
minecraft("1.15.2") {
annotationProcessor(project(":annotation-processing:annotation-processing-autoload"))
implementation(project(":transform:transform-hook"))
implementation(project(":transform:transform-javassist"))
implementation(project(":transform:transform-shadow"))
Expand All @@ -34,7 +35,4 @@ dependencies {

api(project(":framework:framework-stereotype"))
api(project(":transform:transform-minecraft"))



}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

import java.util.Collection;
import java.util.HashSet;
import com.google.inject.Singleton;
import net.flintmc.framework.inject.implement.Implement;
import net.flintmc.util.i18n.I18n;
import net.minecraft.client.Minecraft;
Expand All @@ -29,6 +30,7 @@
/**
* 1.15.2 implementation of the {@link I18n}.
*/
@Singleton
@Implement(value = I18n.class, version = "1.15.2")
public class VersionedI18n implements I18n {

Expand Down

0 comments on commit 079be09

Please sign in to comment.