update scripts to be able to extract them as a templates

This commit is contained in:
InsanusMokrassar 2019-11-20 11:13:02 +06:00
parent 85b65bb104
commit a596413a2d
6 changed files with 14 additions and 9 deletions

View File

@ -1,5 +1,3 @@
project.group = "$project_public_group"
buildscript {
repositories {
mavenLocal()

View File

@ -8,8 +8,4 @@ uuidVersion=0.0.5
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

View File

@ -1,5 +1,13 @@
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_url=https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore

View File

@ -49,8 +49,8 @@ publishing {
licenses {
license {
name "The Apache Software License, Version 2.0"
url "${project_url}/src/master/LICENSE"
name "${project_public_license_fullname}"
url "${project_public_license_url}"
distribution "repo"
}
}

View File

@ -9,7 +9,7 @@ bintray {
repo = "$project_bintray_repo"
name = "${project.name}"
vcsUrl = "${project_url}"
licenses = ['Apache-2.0']
licenses = ["${project_public_license_name}"]
version {
name = "${project.version}"
released = new Date()

View File

@ -1,3 +1,6 @@
exposed_version=0.17.7
test_sqlite_version=3.28.0
test_junit_version=5.5.2
project_public_version=0.1.0
project_public_group=com.insanusmokrassar