Skip to content

Commit 3364f23

Browse files
author
Flibio
committed
Prepare for version 3.0.0
Updated license headers Removed Continuum Removed Updatifier
1 parent ed89cda commit 3364f23

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+68
-133
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# IntelliJ
22
.idea/
3+
*.iml
4+
out/
35

46
# Gradle
57
.gradle/

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,3 @@ notifications:
66
install:
77
- 'chmod +x ./gradlew'
88
script: gradle shadowJar
9-
after_success:
10-
- 'chmod +x ./continuum.sh'
11-
- './continuum.sh'

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Flibio
3+
Copyright (c) 2015 - 2018 Flibio
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
![EconomyLite](http://i.imgur.com/MsuOo9w.png)
22

3-
[![Downloads](https://img.shields.io/github/downloads/flibio/economylite/total.svg?style=flat-square)](https://github.com/Flibio/EconomyLite/releases)
43
[![Issues](https://img.shields.io/github/issues/flibio/economylite.svg?style=flat-square)](http://www.github.com/Flibio/EconomyLite/issues/)
54
[![Gitter](https://img.shields.io/badge/chat-on_gitter-3F51B5.svg?style=flat-square)](https://gitter.im/Flibio/EconomyLite)
65

@@ -33,8 +32,6 @@ Drag and drop EconomyLite into your "mods" folder along with Sponge and start yo
3332

3433
:inbox_tray: [**Download EconomyLite**][1]
3534

36-
:wrench: [**Development Builds**][2]
37-
3835
:speech_balloon: [**Issues & Suggestions**][3]
3936

4037
:newspaper: [**Forum Post**][4]
@@ -47,9 +44,8 @@ Drag and drop EconomyLite into your "mods" folder along with Sponge and start yo
4744

4845
![EconomyLite Statistics](http://i.flibio.net/economylite.php)
4946

50-
[1]: https://github.com/Flibio/EconomyLite/releases
51-
[2]: http://continuum.flibio.net/project/EconomyLite
47+
[1]: https://ore.spongepowered.org/Flibio/EconomyLite/versions
5248
[3]: https://github.com/Flibio/EconomyLite/issues
53-
[4]: https://forums.spongepowered.org/t/economylite/7045
49+
[4]: https://forums.spongepowered.org/t/economylite/16502
5450
[5]: http://flibiostudio.github.io/EconomyLiteDocs/index.html
5551
[6]: http://flibio.weebly.com/support-me.html

build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ repositories {
2626

2727
dependencies {
2828
compile "org.spongepowered:spongeapi:${project.apiVersion}"
29-
compile 'com.github.flibio:updatifier:v1.4.0:api'
3029
compile 'com.github.flibiostudio:utils:5f41eac'
3130
}
3231

@@ -39,12 +38,9 @@ shadowJar {
3938
archiveName = "EconomyLite-${project.apiVersion.minus("-SNAPSHOT")}-${bVer}${buildNumber}.jar"
4039

4140
dependencies {
42-
include dependency('net.minecrell.mcstats:statslite-sponge')
43-
include dependency('com.github.flibio:updatifier')
4441
include dependency('com.github.flibiostudio:utils')
4542
}
46-
47-
relocate 'me.flibio.updatifier', 'io.github.flibio.economylite.updatifier'
43+
4844
relocate 'io.github.flibio.utils', 'io.github.flibio.economylite.utils'
4945
}
5046

continuum.sh

Lines changed: 0 additions & 54 deletions
This file was deleted.

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=EconomyLite
22
owner=Flibio
33
inceptionYear=2015
4-
currentYear=2017
5-
version=2.13.0
6-
apiVersion=7.0.0-SNAPSHOT
4+
currentYear=2018
5+
version=3.0.0
6+
apiVersion=7.1.0-SNAPSHOT

src/main/java/io/github/flibio/economylite/CauseFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/EconomyLite.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -62,7 +62,6 @@
6262
import io.github.flibio.utils.commands.CommandLoader;
6363
import io.github.flibio.utils.file.FileManager;
6464
import io.github.flibio.utils.message.MessageStorage;
65-
import me.flibio.updatifier.Updatifier;
6665
import ninja.leaping.configurate.ConfigurationNode;
6766
import org.slf4j.Logger;
6867
import org.spongepowered.api.Game;
@@ -82,7 +81,6 @@
8281
import java.util.List;
8382
import java.util.Optional;
8483

85-
@Updatifier(repoName = "EconomyLite", repoOwner = "Flibio", version = "v" + PluginInfo.VERSION)
8684
@Plugin(id = PluginInfo.ID, name = PluginInfo.NAME, version = PluginInfo.VERSION, description = PluginInfo.DESCRIPTION)
8785
public class EconomyLite {
8886

@@ -177,7 +175,7 @@ public void onServerInitialize(GamePreInitializationEvent event) {
177175
new VirtualPayCommand(),
178176
new PayVirtualCommand(),
179177
new MigrateCommand()
180-
);
178+
);
181179
// Register currency registry
182180
game.getRegistry().registerModule(Currency.class, new CurrencyRegistryModule());
183181
}

src/main/java/io/github/flibio/economylite/PluginInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/TextUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/api/CurrencyEconService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/api/PlayerEconService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/api/VirtualEconService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/bstats/Metrics.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/MigrateCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/PayCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/admin/AddCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/admin/EconCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/admin/RemoveCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/admin/SetAllCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/admin/SetCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/balance/BalTopCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/balance/BalanceCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCreateCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/currency/CurrencyDeleteCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/currency/CurrencySetCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/virtual/PayVirtualCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/virtual/VirtualAddCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/virtual/VirtualBalanceCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/virtual/VirtualEconCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/main/java/io/github/flibio/economylite/commands/virtual/VirtualPayCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of EconomyLite, licensed under the MIT License (MIT).
33
*
4-
* Copyright (c) 2015 - 2017 Flibio
4+
* Copyright (c) 2015 - 2018 Flibio
55
* Copyright (c) Contributors
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)