From f290e6c1c4f5f36874340a2486e8ebb9b591997d Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Sun, 22 Jan 2023 16:22:06 +0100 Subject: [PATCH] Add Copyright --- src/main/kotlin/de/steamwar/Application.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/data/Groups.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/data/Paths.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/plugins/Auth.kt | 19 +++++++++++++++++++ .../kotlin/de/steamwar/plugins/Plugins.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/routes/Data.kt | 19 +++++++++++++++++++ .../kotlin/de/steamwar/routes/EventFights.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/routes/Events.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/routes/Mods.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/routes/Routes.kt | 19 +++++++++++++++++++ src/main/kotlin/de/steamwar/routes/Teams.kt | 19 +++++++++++++++++++ .../kotlin/de/steamwar/sql/SQLConfigImpl.kt | 19 +++++++++++++++++++ .../kotlin/de/steamwar/sql/SQLWrapperImpl.kt | 19 +++++++++++++++++++ 13 files changed, 247 insertions(+) diff --git a/src/main/kotlin/de/steamwar/Application.kt b/src/main/kotlin/de/steamwar/Application.kt index 33084e8..57981aa 100644 --- a/src/main/kotlin/de/steamwar/Application.kt +++ b/src/main/kotlin/de/steamwar/Application.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar import de.steamwar.plugins.configurePlugins diff --git a/src/main/kotlin/de/steamwar/data/Groups.kt b/src/main/kotlin/de/steamwar/data/Groups.kt index 292dbad..2d8e2b5 100644 --- a/src/main/kotlin/de/steamwar/data/Groups.kt +++ b/src/main/kotlin/de/steamwar/data/Groups.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.data import kotlinx.serialization.ExperimentalSerializationApi diff --git a/src/main/kotlin/de/steamwar/data/Paths.kt b/src/main/kotlin/de/steamwar/data/Paths.kt index a54099c..e0d1328 100644 --- a/src/main/kotlin/de/steamwar/data/Paths.kt +++ b/src/main/kotlin/de/steamwar/data/Paths.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.data import java.io.File diff --git a/src/main/kotlin/de/steamwar/plugins/Auth.kt b/src/main/kotlin/de/steamwar/plugins/Auth.kt index 93b7374..36e0b7f 100644 --- a/src/main/kotlin/de/steamwar/plugins/Auth.kt +++ b/src/main/kotlin/de/steamwar/plugins/Auth.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.plugins import de.steamwar.ResponseError diff --git a/src/main/kotlin/de/steamwar/plugins/Plugins.kt b/src/main/kotlin/de/steamwar/plugins/Plugins.kt index abc73fe..99c00ff 100644 --- a/src/main/kotlin/de/steamwar/plugins/Plugins.kt +++ b/src/main/kotlin/de/steamwar/plugins/Plugins.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.plugins import io.ktor.http.* diff --git a/src/main/kotlin/de/steamwar/routes/Data.kt b/src/main/kotlin/de/steamwar/routes/Data.kt index 47528a7..4adc470 100644 --- a/src/main/kotlin/de/steamwar/routes/Data.kt +++ b/src/main/kotlin/de/steamwar/routes/Data.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.routes import de.steamwar.ResponseError diff --git a/src/main/kotlin/de/steamwar/routes/EventFights.kt b/src/main/kotlin/de/steamwar/routes/EventFights.kt index b7bc32e..b83b699 100644 --- a/src/main/kotlin/de/steamwar/routes/EventFights.kt +++ b/src/main/kotlin/de/steamwar/routes/EventFights.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.routes import de.steamwar.ResponseError diff --git a/src/main/kotlin/de/steamwar/routes/Events.kt b/src/main/kotlin/de/steamwar/routes/Events.kt index ed43bba..521c6d5 100644 --- a/src/main/kotlin/de/steamwar/routes/Events.kt +++ b/src/main/kotlin/de/steamwar/routes/Events.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.routes import de.steamwar.ResponseError diff --git a/src/main/kotlin/de/steamwar/routes/Mods.kt b/src/main/kotlin/de/steamwar/routes/Mods.kt index a016f74..ab8ded6 100644 --- a/src/main/kotlin/de/steamwar/routes/Mods.kt +++ b/src/main/kotlin/de/steamwar/routes/Mods.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.routes import de.steamwar.ResponseError diff --git a/src/main/kotlin/de/steamwar/routes/Routes.kt b/src/main/kotlin/de/steamwar/routes/Routes.kt index 8d855f3..1105d1f 100644 --- a/src/main/kotlin/de/steamwar/routes/Routes.kt +++ b/src/main/kotlin/de/steamwar/routes/Routes.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.routes import io.ktor.server.application.* diff --git a/src/main/kotlin/de/steamwar/routes/Teams.kt b/src/main/kotlin/de/steamwar/routes/Teams.kt index 88c9afc..db930b9 100644 --- a/src/main/kotlin/de/steamwar/routes/Teams.kt +++ b/src/main/kotlin/de/steamwar/routes/Teams.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.routes import de.steamwar.sql.Team diff --git a/src/main/kotlin/de/steamwar/sql/SQLConfigImpl.kt b/src/main/kotlin/de/steamwar/sql/SQLConfigImpl.kt index da42cda..b9c8158 100644 --- a/src/main/kotlin/de/steamwar/sql/SQLConfigImpl.kt +++ b/src/main/kotlin/de/steamwar/sql/SQLConfigImpl.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.sql import de.steamwar.sql.internal.SQLConfig diff --git a/src/main/kotlin/de/steamwar/sql/SQLWrapperImpl.kt b/src/main/kotlin/de/steamwar/sql/SQLWrapperImpl.kt index 9853b7f..c17d992 100644 --- a/src/main/kotlin/de/steamwar/sql/SQLWrapperImpl.kt +++ b/src/main/kotlin/de/steamwar/sql/SQLWrapperImpl.kt @@ -1,3 +1,22 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2023 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package de.steamwar.sql import org.bspfsystems.yamlconfiguration.file.YamlConfiguration