Skip to content

Commit

Permalink
arc/mindustry: update to v102
Browse files Browse the repository at this point in the history
  • Loading branch information
mayli committed Jan 6, 2020
1 parent 630a6ef commit 58daa3a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
15 changes: 10 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
apply plugin: "java"

version '1.1'
version '1.0'

sourceCompatibility = 1.8

repositories{
mavenCentral()
maven{ url 'https://jitpack.io' }
maven{ url 'https://www.jitpack.io' }
}

ext{
//the build number that this plugin is made for
mindustryVersion = 'v102'
}

dependencies{
compileOnly "com.github.Anuken.Arc:arc-core:95"
compileOnly "com.github.Anuken.Mindustry:core:master-SNAPSHOT"
compileOnly "com.github.Anuken.Arc:arc-core:$mindustryVersion"
compileOnly "com.github.Anuken.Mindustry:core:$mindustryVersion"
}

jar{
version = null
from{
configurations.runtimeClasspath.collect{it.isDirectory() ? it : zipTree(it)}
}
}
}
16 changes: 8 additions & 8 deletions src/main/java/rtv/RockTheVotePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

import java.util.HashSet;

import io.anuke.arc.*;
import io.anuke.arc.util.*;
import io.anuke.mindustry.entities.type.*;
import io.anuke.mindustry.game.Team;
import io.anuke.mindustry.game.EventType.*;
import io.anuke.mindustry.gen.*;
import io.anuke.mindustry.plugin.Plugin;
import io.anuke.mindustry.Vars;
import arc.*;
import arc.util.*;
import mindustry.entities.type.*;
import mindustry.game.Team;
import mindustry.game.EventType.*;
import mindustry.gen.*;
import mindustry.plugin.Plugin;
import mindustry.Vars;

public class RockTheVotePlugin extends Plugin {

Expand Down

0 comments on commit 58daa3a

Please sign in to comment.