diff --git a/LICENSE b/LICENSE index becafcf5..f6ed0a70 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 IntellectualSites +Copyright (c) 2020 Alexander Söderberg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 0eca4f2e..df1d22b6 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,21 @@ The code is based on a paper that can be found [here](https://github.com/Sauilit - Allow for command pre-processing - Allow for command suggestion outputs -Once the core functionality is present additional goals are: +Once the core functionality is present, the framework will offer implementation modules, supporting a wide variety of platforms. -- Create a Minecraft specific implementation and add appropriate bindings (bukkit, paper, velocity and bungee) with Brigadier mappings where appropriate -- Create a Discord implementation -- Create a Java CLI implementation +### Implementations + +- Minecraft: + - Generic Brigadier module + - Bukkit module + - Paper module, with optional Brigadier support + - Sponge module + - Cloudburst + - Bungee module + - Velocity module + +- Create a Discord implementation (JDA) +- Create a Java CLI implementation (JLine3) ## Links @@ -51,3 +61,13 @@ cloud is available from [IntellectualSites](https://intellectualsites.com)' mave ``` + +### Attributions, links & acknowledgements + +This library is licensed under the MIT license, and the code copyright +belongs to Alexander Söderberg. The implementation is based on a paper written by the copyright holder, and this paper exists +under the CC Attribution 4 license. + +The Cloud icon was created by by +Thanga Vignesh P on Iconscout +and Digital rights were purchased under a premium plan. diff --git a/cloud-bukkit/pom.xml b/cloud-bukkit/pom.xml index 132b8a0b..4bc9e0cf 100644 --- a/cloud-bukkit/pom.xml +++ b/cloud-bukkit/pom.xml @@ -3,7 +3,7 @@ ~ ~ MIT License ~ - ~ Copyright (c) 2020 IntellectualSites + ~ Copyright (c) 2020 Alexander Söderberg ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommand.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommand.java index 32b2274b..6c2c7c6c 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommand.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommand.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandManager.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandManager.java index 7bde8cb3..f77f12b3 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandManager.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandManager.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMeta.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMeta.java index 4635f76b..102eff8f 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMeta.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMeta.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMetaBuilder.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMetaBuilder.java index bd290b28..36a093d3 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMetaBuilder.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandMetaBuilder.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandSender.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandSender.java index 5ce78f61..df91afef 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandSender.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitCommandSender.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitConsoleSender.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitConsoleSender.java index 51eb1437..fa8576e3 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitConsoleSender.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitConsoleSender.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPlayerSender.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPlayerSender.java index d59ce0fe..f2a83202 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPlayerSender.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPlayerSender.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPluginRegistrationHandler.java b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPluginRegistrationHandler.java index 7342d6b5..a0717ffc 100644 --- a/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPluginRegistrationHandler.java +++ b/cloud-bukkit/src/main/java/com/intellectualsites/commands/BukkitPluginRegistrationHandler.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/pom.xml b/cloud-core/pom.xml index 1c8e1020..87666b93 100644 --- a/cloud-core/pom.xml +++ b/cloud-core/pom.xml @@ -3,7 +3,7 @@ ~ ~ MIT License ~ - ~ Copyright (c) 2020 IntellectualSites + ~ Copyright (c) 2020 Alexander Söderberg ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/Command.java b/cloud-core/src/main/java/com/intellectualsites/commands/Command.java index dbda2e3e..c5c228ae 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/Command.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/Command.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/CommandManager.java b/cloud-core/src/main/java/com/intellectualsites/commands/CommandManager.java index bf720fe3..61669157 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/CommandManager.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/CommandManager.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/CommandTree.java b/cloud-core/src/main/java/com/intellectualsites/commands/CommandTree.java index 2456f4ab..5fed4b07 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/CommandTree.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/CommandTree.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandComponent.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandComponent.java index a88376c9..da2cfd13 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandComponent.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandComponent.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandSyntaxFormatter.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandSyntaxFormatter.java index 7a64e662..e8025b9e 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandSyntaxFormatter.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/CommandSyntaxFormatter.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/StandardCommandSyntaxFormatter.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/StandardCommandSyntaxFormatter.java index f677bb81..b7298b21 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/StandardCommandSyntaxFormatter.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/StandardCommandSyntaxFormatter.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/StaticComponent.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/StaticComponent.java index 19547b57..25a8162e 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/StaticComponent.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/StaticComponent.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParseResult.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParseResult.java index 0fd57837..0b126d07 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParseResult.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParseResult.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParser.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParser.java index 36f2da61..ef8c4458 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParser.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/parser/ComponentParser.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/ByteComponent.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/ByteComponent.java index d7e5c718..ca028433 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/ByteComponent.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/ByteComponent.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/IntegerComponent.java b/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/IntegerComponent.java index 603ea442..9f872f3f 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/IntegerComponent.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/components/standard/IntegerComponent.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContext.java b/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContext.java index 2dcdca55..dfe310d3 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContext.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContext.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContextFactory.java b/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContextFactory.java index e32894fa..46fa454e 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContextFactory.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/context/CommandContextFactory.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/context/StandardCommandContextFactory.java b/cloud-core/src/main/java/com/intellectualsites/commands/context/StandardCommandContextFactory.java index a5d703ae..67c5e0c8 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/context/StandardCommandContextFactory.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/context/StandardCommandContextFactory.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/CommandParseException.java b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/CommandParseException.java index 6c62c670..64cf293d 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/CommandParseException.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/CommandParseException.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/ComponentParseException.java b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/ComponentParseException.java index 937232fc..13fff685 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/ComponentParseException.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/ComponentParseException.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/InvalidSyntaxException.java b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/InvalidSyntaxException.java index ef462f06..c7905a7d 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/InvalidSyntaxException.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/InvalidSyntaxException.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoPermissionException.java b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoPermissionException.java index 3024dfc3..b5e3548d 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoPermissionException.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoPermissionException.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoSuchCommandException.java b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoSuchCommandException.java index 407d9f33..2d5d9d50 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoSuchCommandException.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/NoSuchCommandException.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/parsing/NumberParseException.java b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/parsing/NumberParseException.java index 31233a1a..275c7009 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/parsing/NumberParseException.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/exceptions/parsing/NumberParseException.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionCoordinator.java b/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionCoordinator.java index a3322da6..400fca9b 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionCoordinator.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionCoordinator.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionHandler.java b/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionHandler.java index 5b2d1560..7c4dee6c 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionHandler.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandExecutionHandler.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandResult.java b/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandResult.java index 8535a31b..f93f528c 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandResult.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/execution/CommandResult.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/internal/CommandRegistrationHandler.java b/cloud-core/src/main/java/com/intellectualsites/commands/internal/CommandRegistrationHandler.java index 502ecd18..9775f755 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/internal/CommandRegistrationHandler.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/internal/CommandRegistrationHandler.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/meta/CommandMeta.java b/cloud-core/src/main/java/com/intellectualsites/commands/meta/CommandMeta.java index 6ee9175f..72452ed3 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/meta/CommandMeta.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/meta/CommandMeta.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/meta/SimpleCommandMeta.java b/cloud-core/src/main/java/com/intellectualsites/commands/meta/SimpleCommandMeta.java index 9e44d9d2..a31f2f26 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/meta/SimpleCommandMeta.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/meta/SimpleCommandMeta.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/main/java/com/intellectualsites/commands/sender/CommandSender.java b/cloud-core/src/main/java/com/intellectualsites/commands/sender/CommandSender.java index 3833b42c..672c3fec 100644 --- a/cloud-core/src/main/java/com/intellectualsites/commands/sender/CommandSender.java +++ b/cloud-core/src/main/java/com/intellectualsites/commands/sender/CommandSender.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/test/java/com/intellectualsites/commands/CommandTest.java b/cloud-core/src/test/java/com/intellectualsites/commands/CommandTest.java index ada07b0a..f8d43e8f 100644 --- a/cloud-core/src/test/java/com/intellectualsites/commands/CommandTest.java +++ b/cloud-core/src/test/java/com/intellectualsites/commands/CommandTest.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/test/java/com/intellectualsites/commands/CommandTreeTest.java b/cloud-core/src/test/java/com/intellectualsites/commands/CommandTreeTest.java index 8e93e06a..847e3b05 100644 --- a/cloud-core/src/test/java/com/intellectualsites/commands/CommandTreeTest.java +++ b/cloud-core/src/test/java/com/intellectualsites/commands/CommandTreeTest.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandManager.java b/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandManager.java index 6cbe1562..c312550a 100644 --- a/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandManager.java +++ b/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandManager.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandSender.java b/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandSender.java index 9d42d069..0b826034 100644 --- a/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandSender.java +++ b/cloud-core/src/test/java/com/intellectualsites/commands/TestCommandSender.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandManager.java b/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandManager.java index 85711f6f..b80229e6 100644 --- a/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandManager.java +++ b/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandManager.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandSender.java b/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandSender.java index def4638c..5ca0fe78 100644 --- a/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandSender.java +++ b/cloud-jline/src/main/java/com/intellectualsites/commands/jline/JLineCommandSender.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2020 IntellectualSites +// Copyright (c) 2020 Alexander Söderberg // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal