From 45286b6b9eb65c26a5563cb507c23940fb3b4732 Mon Sep 17 00:00:00 2001 From: Max Narvaez Date: Tue, 31 Mar 2020 12:48:58 -0500 Subject: [PATCH] Add copyright license --- LICENSE | 21 ++++++++++++++++++ pom.xml | 7 ++++++ .../io/github/maxnz/teleportalias/Alias.kt | 22 +++++++++++++++++++ .../github/maxnz/teleportalias/GlobalVars.kt | 22 +++++++++++++++++++ .../maxnz/teleportalias/TeleportAlias.kt | 22 +++++++++++++++++++ .../addalias/AddAliasCommandExecutor.kt | 22 +++++++++++++++++++ .../editalias/EditAliasCommandExecutor.kt | 22 +++++++++++++++++++ .../editalias/EditAliasTabCompleter.kt | 22 +++++++++++++++++++ .../listalias/ListAliasCommandExecutor.kt | 22 +++++++++++++++++++ .../removealias/RemoveAliasCommandExecutor.kt | 22 +++++++++++++++++++ .../removealias/RemoveAliasTabCompleter.kt | 22 +++++++++++++++++++ .../teleport/TeleportCommandExecutor.kt | 22 +++++++++++++++++++ .../teleport/TeleportListener.kt | 22 +++++++++++++++++++ .../teleport/TeleportLocation.kt | 22 +++++++++++++++++++ .../teleport/TeleportTabCompleter.kt | 22 +++++++++++++++++++ 15 files changed, 314 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c3aa9b5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Max Narvaez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/pom.xml b/pom.xml index 09c44b0..2b68f9d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,6 +8,13 @@ TeleportAlias 0.1 + + + MIT License + http://www.opensource.org/licenses/mit-license.php + + + 1.3.71 1.3.3 diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/Alias.kt b/src/main/kotlin/io/github/maxnz/teleportalias/Alias.kt index b13e29b..1c680dc 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/Alias.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/Alias.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias import org.bukkit.command.CommandSender diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/GlobalVars.kt b/src/main/kotlin/io/github/maxnz/teleportalias/GlobalVars.kt index e92c786..bbc2170 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/GlobalVars.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/GlobalVars.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias import io.github.maxnz.teleportalias.teleport.TeleportLocation diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/TeleportAlias.kt b/src/main/kotlin/io/github/maxnz/teleportalias/TeleportAlias.kt index 7da3c0f..5bb9cc1 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/TeleportAlias.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/TeleportAlias.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias import io.github.maxnz.teleportalias.addalias.AddAliasCommandExecutor diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/addalias/AddAliasCommandExecutor.kt b/src/main/kotlin/io/github/maxnz/teleportalias/addalias/AddAliasCommandExecutor.kt index f4b0826..91226fc 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/addalias/AddAliasCommandExecutor.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/addalias/AddAliasCommandExecutor.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.addalias import io.github.maxnz.teleportalias.Alias diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasCommandExecutor.kt b/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasCommandExecutor.kt index 4060529..b5a0310 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasCommandExecutor.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasCommandExecutor.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.editalias import io.github.maxnz.teleportalias.Alias diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasTabCompleter.kt b/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasTabCompleter.kt index 4f8b95e..21a7c11 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasTabCompleter.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/editalias/EditAliasTabCompleter.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.editalias import io.github.maxnz.teleportalias.aliases diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/listalias/ListAliasCommandExecutor.kt b/src/main/kotlin/io/github/maxnz/teleportalias/listalias/ListAliasCommandExecutor.kt index fbed271..7da304c 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/listalias/ListAliasCommandExecutor.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/listalias/ListAliasCommandExecutor.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.listalias import io.github.maxnz.teleportalias.aliases diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasCommandExecutor.kt b/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasCommandExecutor.kt index 3d6277b..8821e76 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasCommandExecutor.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasCommandExecutor.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.removealias import io.github.maxnz.teleportalias.aliases diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasTabCompleter.kt b/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasTabCompleter.kt index b5889a3..5efee03 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasTabCompleter.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/removealias/RemoveAliasTabCompleter.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.removealias import io.github.maxnz.teleportalias.aliases diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportCommandExecutor.kt b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportCommandExecutor.kt index b9b47ed..28facb9 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportCommandExecutor.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportCommandExecutor.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.teleport import io.github.maxnz.teleportalias.aliases diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportListener.kt b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportListener.kt index b1af03d..abcd105 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportListener.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportListener.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.teleport import io.github.maxnz.teleportalias.playerLastPositions diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportLocation.kt b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportLocation.kt index d116927..5956db3 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportLocation.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportLocation.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.teleport import org.bukkit.Location diff --git a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportTabCompleter.kt b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportTabCompleter.kt index e502175..a6213c6 100644 --- a/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportTabCompleter.kt +++ b/src/main/kotlin/io/github/maxnz/teleportalias/teleport/TeleportTabCompleter.kt @@ -1,3 +1,25 @@ +/* + * Copyright (c) 2020 Max Narvaez + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + package io.github.maxnz.teleportalias.teleport import io.github.maxnz.teleportalias.aliases