2019-07-20 11:39:26 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Ugljesa Jovanovic
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
plugins {
|
2020-10-17 17:39:53 +02:00
|
|
|
`java-gradle-plugin`
|
2019-07-20 11:39:26 +02:00
|
|
|
`kotlin-dsl`
|
2020-10-17 17:39:53 +02:00
|
|
|
`kotlin-dsl-precompiled-script-plugins`
|
2019-07-20 11:39:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2020-05-30 22:47:01 +02:00
|
|
|
mavenCentral()
|
2020-08-22 00:43:22 +02:00
|
|
|
google()
|
2020-05-30 22:47:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-12 18:12:58 +02:00
|
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
|
2022-08-28 20:03:25 +02:00
|
|
|
implementation("com.android.tools.build:gradle:7.2.2")
|
2022-10-12 18:12:58 +02:00
|
|
|
implementation ("org.jetbrains.dokka:dokka-gradle-plugin:1.7.20")
|
2020-05-30 22:47:01 +02:00
|
|
|
}
|
2020-06-10 19:09:01 +02:00
|
|
|
|
|
|
|
System.setProperty("PROJECT_PATH", project.projectDir.parentFile.toString())
|
|
|
|
println("Path ${project.projectDir.parentFile}")
|