Remove test files, bump version

This commit is contained in:
Luck 2016-07-19 13:01:58 +01:00
parent cdf8a4ce18
commit ea358e88e1
9 changed files with 11 additions and 27 deletions

View File

@ -5,12 +5,12 @@
<parent> <parent>
<artifactId>luckperms</artifactId> <artifactId>luckperms</artifactId>
<groupId>me.lucko</groupId> <groupId>me.lucko</groupId>
<version>1.1</version> <version>1.2</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>luckperms-bukkit</artifactId> <artifactId>luckperms-bukkit</artifactId>
<version>1.0-SNAPSHOT</version> <version>$(project.parent.version)</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>LuckPerms</name> <name>LuckPerms</name>

View File

@ -28,7 +28,7 @@ import java.util.stream.Collectors;
@Getter @Getter
public class LPBukkitPlugin extends JavaPlugin implements LuckPermsPlugin { public class LPBukkitPlugin extends JavaPlugin implements LuckPermsPlugin {
public static final String VERSION = "v1.1"; public static final String VERSION = "v1.2";
private LPConfiguration configuration; private LPConfiguration configuration;
private UserManager userManager; private UserManager userManager;

View File

@ -1,6 +1,6 @@
name: LuckPerms name: LuckPerms
author: Luck author: Luck
version: 1.1 version: 1.2
main: me.lucko.luckperms.LPBukkitPlugin main: me.lucko.luckperms.LPBukkitPlugin
softdepend: [Vault] softdepend: [Vault]
description: A permissions plugin description: A permissions plugin

View File

@ -5,12 +5,12 @@
<parent> <parent>
<artifactId>luckperms</artifactId> <artifactId>luckperms</artifactId>
<groupId>me.lucko</groupId> <groupId>me.lucko</groupId>
<version>1.1</version> <version>1.2</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>luckperms-bungee</artifactId> <artifactId>luckperms-bungee</artifactId>
<version>1.0-SNAPSHOT</version> <version>$(project.parent.version)</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>LuckPerms</name> <name>LuckPerms</name>

View File

@ -23,7 +23,7 @@ import java.util.stream.Collectors;
@Getter @Getter
public class LPBungeePlugin extends Plugin implements LuckPermsPlugin { public class LPBungeePlugin extends Plugin implements LuckPermsPlugin {
public static final String VERSION = "v1.1"; public static final String VERSION = "v1.2";
private LPConfiguration configuration; private LPConfiguration configuration;
private UserManager userManager; private UserManager userManager;

View File

@ -1,5 +1,5 @@
name: LuckPerms name: LuckPerms
author: Luck author: Luck
version: 1.1 version: 1.2
main: me.lucko.luckperms.LPBungeePlugin main: me.lucko.luckperms.LPBungeePlugin
description: A permissions plugin description: A permissions plugin

View File

@ -5,11 +5,12 @@
<parent> <parent>
<artifactId>luckperms</artifactId> <artifactId>luckperms</artifactId>
<groupId>me.lucko</groupId> <groupId>me.lucko</groupId>
<version>1.1</version> <version>1.2</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>luckperms-common</artifactId> <artifactId>luckperms-common</artifactId>
<version>$(project.parent.version)</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -1,17 +0,0 @@
import me.lucko.luckperms.utils.DateUtil;
public class DateTest {
public static void main(String[] args) {
try {
System.out.println("" + DateUtil.parseDateDiff("1m", true));
System.out.println(DateUtil.formatDateDiff(DateUtil.parseDateDiff("1 hour, 1 second", true)));
} catch (DateUtil.IllegalDateException e) {
e.printStackTrace();
}
}
}

View File

@ -7,7 +7,7 @@
<groupId>me.lucko</groupId> <groupId>me.lucko</groupId>
<artifactId>luckperms</artifactId> <artifactId>luckperms</artifactId>
<version>1.1</version> <version>1.2</version>
<modules> <modules>
<module>bukkit</module> <module>bukkit</module>
<module>common</module> <module>common</module>