Skip to content

Commit

Permalink
1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
CJCrafter committed Sep 16, 2022
1 parent ed66e27 commit 9116a2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 10 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

group = "me.cjcrafter"
version = "1.3.7"
version = "1.3.8"

plugins {
`java-library`
Expand Down Expand Up @@ -39,6 +39,15 @@ repositories {
}
}

maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/WeaponMechanics/MechanicsAutoDownload")
credentials {
username = findProperty("user").toString()
password = findProperty("pass").toString() // Check WeaponMechanics wiki on how to use this in your repo!
}
}

maven {
name = "lumine-repo"
url = uri("http://mvn.lumine.io/repository/maven-public/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,14 @@
import org.bukkit.plugin.java.JavaPlugin;

import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;

public class ArmorMechanics extends JavaPlugin {

public static ArmorMechanics INSTANCE;

Debugger debug;
public Debugger debug;
private Metrics metrics;
private UpdateChecker update;

Expand Down

0 comments on commit 9116a2c

Please # to comment.