Add licensing info and new contribution policy

This commit is contained in:
nea
2023-05-25 21:03:08 +02:00
parent 98b8879ba2
commit c9ceb22858
81 changed files with 2220 additions and 19 deletions

22
buildSrc/build.gradle.kts Normal file
View File

@@ -0,0 +1,22 @@
plugins {
kotlin("jvm") version "1.8.10"
`kotlin-dsl`
}
repositories {
mavenCentral()
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.github.romangraef:neaslicenseextractificator:1.1.0")
}
sourceSets {
main {
kotlin {
srcDir(file("src"))
}
}
}