Skip to content

Commit 7f06991

Browse files
author
Robert Winkler
committed
Added License Header
1 parent 5825da6 commit 7f06991

File tree

168 files changed

+1069
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+1069
-6
lines changed

build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
11
plugins {
22
kotlin("jvm") version "2.0.20"
33
id("org.jetbrains.kotlinx.kover") version "0.8.3"
4+
id("org.cadixdev.licenser") version "0.6.1"
45
`maven-publish`
56
}
67

78
subprojects {
89
apply(plugin = "org.jetbrains.kotlin.jvm")
910
apply(plugin = "org.jetbrains.kotlinx.kover")
1011
apply(plugin = "maven-publish")
12+
apply(plugin = "org.cadixdev.licenser")
1113

1214
group = "ai.ancf.lmos"
1315
version = "0.1.3-SNAPSHOT"
1416

17+
license {
18+
header(rootProject.file("LICENSE"))
19+
include("**/*.java")
20+
include("**/*.kt")
21+
include("**/*.yaml")
22+
exclude("**/*.properties")
23+
}
24+
25+
1526
dependencies {
1627
testImplementation(kotlin("test"))
1728
testImplementation ("org.jetbrains.kotlinx:kotlinx-coroutines-test")

kotlin-wot-binding-http/src/main/kotlin/http/HttpClientConfig.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package http
28

39
import ai.ancf.lmos.wot.security.SecurityScheme

kotlin-wot-binding-http/src/main/kotlin/http/HttpProtocolClient.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http
28

39
import ai.ancf.lmos.wot.content.Content

kotlin-wot-binding-http/src/main/kotlin/http/HttpProtocolClientFactory.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http
28

39
import ai.anfc.lmos.wot.binding.ProtocolClient

kotlin-wot-binding-http/src/main/kotlin/http/HttpProtocolServer.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http
28

39
import ai.ancf.lmos.wot.JsonMapper

kotlin-wot-binding-http/src/main/kotlin/http/HttpsProtocolClientFactory.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http
28

39
/**

kotlin-wot-binding-http/src/main/kotlin/http/routes/AbstractRoute.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http.routes
28

39
import ai.ancf.lmos.wot.binding.http.routes.AbstractRoute

kotlin-wot-binding-http/src/main/kotlin/http/routes/ThingsRoute.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http.routes
28

39
import ai.ancf.lmos.wot.content.Content

kotlin-wot-binding-http/src/test/kotlin/http/HttpProtocolClientFactoryTest.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http
28

39
import kotlin.test.Test

kotlin-wot-binding-http/src/test/kotlin/http/HttpProtocolClientTest.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* SPDX-FileCopyrightText: Robert Winkler
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
package ai.ancf.lmos.wot.binding.http
28
import ai.ancf.lmos.wot.content.Content
39
import ai.ancf.lmos.wot.security.BasicSecurityScheme

0 commit comments

Comments
 (0)