update scripts to be able to extract them as a templates
This commit is contained in:
parent
85b65bb104
commit
a596413a2d
@ -1,5 +1,3 @@
|
|||||||
project.group = "$project_public_group"
|
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
|
@ -8,8 +8,4 @@ uuidVersion=0.0.5
|
|||||||
|
|
||||||
gradle_bintray_plugin_version=1.8.4
|
gradle_bintray_plugin_version=1.8.4
|
||||||
|
|
||||||
project_public_version=0.1.0
|
|
||||||
project_public_group=com.insanusmokrassar
|
|
||||||
project_public_description=Core library for PostsSystem
|
|
||||||
|
|
||||||
disableImplicitReflectionSerializerAnnotation=-Xexperimental=kotlinx.serialization.ImplicitReflectionSerializer
|
disableImplicitReflectionSerializerAnnotation=-Xexperimental=kotlinx.serialization.ImplicitReflectionSerializer
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
project_public_name=PostsSystemCore
|
project_public_name=PostsSystemCore
|
||||||
|
|
||||||
|
project_public_license_name=Apache-2.0
|
||||||
|
project_public_license_fullname=The Apache Software License, Version 2.0
|
||||||
|
project_public_license_url=https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore/src/master/LICENSE
|
||||||
|
|
||||||
|
project_public_version=0.1.0
|
||||||
|
project_public_group=com.insanusmokrassar
|
||||||
|
project_public_description=Core library for PostsSystem
|
||||||
|
|
||||||
project_bintray_repo=InsanusMokrassar
|
project_bintray_repo=InsanusMokrassar
|
||||||
|
|
||||||
project_url=https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore
|
project_url=https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore
|
||||||
|
@ -49,8 +49,8 @@ publishing {
|
|||||||
|
|
||||||
licenses {
|
licenses {
|
||||||
license {
|
license {
|
||||||
name "The Apache Software License, Version 2.0"
|
name "${project_public_license_fullname}"
|
||||||
url "${project_url}/src/master/LICENSE"
|
url "${project_public_license_url}"
|
||||||
distribution "repo"
|
distribution "repo"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ bintray {
|
|||||||
repo = "$project_bintray_repo"
|
repo = "$project_bintray_repo"
|
||||||
name = "${project.name}"
|
name = "${project.name}"
|
||||||
vcsUrl = "${project_url}"
|
vcsUrl = "${project_url}"
|
||||||
licenses = ['Apache-2.0']
|
licenses = ["${project_public_license_name}"]
|
||||||
version {
|
version {
|
||||||
name = "${project.version}"
|
name = "${project.version}"
|
||||||
released = new Date()
|
released = new Date()
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
exposed_version=0.17.7
|
exposed_version=0.17.7
|
||||||
test_sqlite_version=3.28.0
|
test_sqlite_version=3.28.0
|
||||||
test_junit_version=5.5.2
|
test_junit_version=5.5.2
|
||||||
|
|
||||||
|
project_public_version=0.1.0
|
||||||
|
project_public_group=com.insanusmokrassar
|
||||||
|
Loading…
Reference in New Issue
Block a user