Compare commits

2 Commits

Author SHA1 Message Date
8accd60b46 Add MIT NonCommercial License
Introduced a new license file to outline usage terms, restricting the software to non-commercial use.
2026-02-14 13:13:35 +01:00
e977b2c88a Update Kotlin plugin version and remove mavenLocal repository.
Upgraded the Kotlin multiplatform plugin from version 2.0.21 to 2.1.0 for improved features and compatibility. Removed the mavenLocal repository from the common configuration to streamline dependency resolution.
2025-05-15 16:16:56 +02:00
3 changed files with 12 additions and 2 deletions

11
LICENSE.txt Normal file
View File

@@ -0,0 +1,11 @@
MIT NonCommercial License
Copyright (c) 2025 H.Nentjes
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to use, copy, modify, merge, publish, and distribute the Software, subject to the following conditions:
NonCommercial Use Only. The Software may not be used, in whole or in part, for any commercial purpose. Commercial purpose means using the Software in a way that is intended for or directed toward commercial advantage or monetary compensation.
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.

View File

@@ -3,7 +3,6 @@ version = "0.1.0"
allprojects { allprojects {
repositories { repositories {
mavenLocal()
mavenCentral() mavenCentral()
maven { maven {
url = uri("https://gitea.astraeus.nl:8443/api/packages/rnentjes/maven") url = uri("https://gitea.astraeus.nl:8443/api/packages/rnentjes/maven")

View File

@@ -1,6 +1,6 @@
pluginManagement { pluginManagement {
plugins { plugins {
kotlin("multiplatform") version "2.0.21" kotlin("multiplatform") version "2.1.0"
} }
repositories { repositories {
gradlePluginPortal() gradlePluginPortal()