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

Commit

Permalink
More fixes and changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Flibio committed Mar 13, 2016
1 parent 9dcbb71 commit 6b0120b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>EconomyLite</groupId>
<artifactId>EconomyLite</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<packaging>jar</packaging>
<name>EconomyLite</name>
<description>An economy plugin for Sponge</description>
Expand All @@ -29,6 +29,18 @@
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>net.minecrell.mcstats</pattern>
<shadedPattern>me.Flibio.EconomyLite.mcstats</shadedPattern>
</relocation>
<relocation>
<pattern>me.flibio.updatifier</pattern>
<shadedPattern>me.Flibio.EconomyLite.updatifier</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -67,7 +79,8 @@
<groupId>com.github.Flibio</groupId>
<artifactId>Updatifier</artifactId>
<version>RELEASE</version>
<scope>provided</scope>
<classifier>api</classifier>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.minecrell.mcstats</groupId>
Expand Down
5 changes: 2 additions & 3 deletions src/me/Flibio/EconomyLite/EconomyLite.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import org.spongepowered.api.command.spec.CommandSpec;
import org.spongepowered.api.event.Listener;
import org.spongepowered.api.event.game.state.GameInitializationEvent;
import org.spongepowered.api.plugin.Dependency;
import org.spongepowered.api.plugin.Plugin;
import org.spongepowered.api.service.economy.Currency;
import org.spongepowered.api.service.economy.EconomyService;
Expand All @@ -45,8 +44,8 @@
import java.util.HashMap;
import java.util.Optional;

@Updatifier(repoName = "EconomyLite", repoOwner = "Flibio", version = "v1.2.0")
@Plugin(id = "me.flibio.economylite.economylite", name = "EconomyLite", version = "1.2.0", description = "EconmyLite provides simple economy handling.", dependencies = @Dependency(id = "Updatifier", optional = true))
@Updatifier(repoName = "EconomyLite", repoOwner = "Flibio", version = "v1.2.1")
@Plugin(id = "me.flibio.economylite", name = "EconomyLite", version = "1.2.1", description = "Sponge economy plugin.")
public class EconomyLite {

@Inject
Expand Down

0 comments on commit 6b0120b

Please sign in to comment.