commit 26a1bdd7f907b077917e58b2d474ff5cf418cb43
parent de1b80c2a4b21c1596e1deb456f601c82edf51e9
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date:   Tue, 17 Oct 2023 18:44:32 +0200

refactor: move SourceVersion to common

Diffstat:
Mcommon/build.gradle.kts | 1-
Rstub/src/main/java/javax/lang/model/SourceVersion.java -> common/src/main/java/javax/lang/model/SourceVersion.java | 0
Mcore/build.gradle.kts | 1-
Msettings.gradle.kts | 5++---
Dstub/.gitignore | 2--
Dstub/build.gradle.kts | 14--------------
6 files changed, 2 insertions(+), 21 deletions(-)

diff --git a/common/build.gradle.kts b/common/build.gradle.kts @@ -32,6 +32,5 @@ dependencies { implementation(libs.androidx.documentfile) implementation(libs.rhino) - implementation(project(":stub")) implementation(project(":mapper")) } \ No newline at end of file diff --git a/stub/src/main/java/javax/lang/model/SourceVersion.java b/common/src/main/java/javax/lang/model/SourceVersion.java diff --git a/core/build.gradle.kts b/core/build.gradle.kts @@ -26,7 +26,6 @@ dependencies { implementation(libs.rhino) implementation(project(":common")) - implementation(project(":stub")) implementation(project(":mapper")) implementation(project(":native")) } \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts @@ -21,5 +21,4 @@ include(":common") include(":core") include(":app") include(":mapper") -include(":native") -include(":stub")- \ No newline at end of file +include(":native")+ \ No newline at end of file diff --git a/stub/.gitignore b/stub/.gitignore @@ -1 +0,0 @@ -/build- \ No newline at end of file diff --git a/stub/build.gradle.kts b/stub/build.gradle.kts @@ -1,14 +0,0 @@ -plugins { - alias(libs.plugins.androidLibrary) - alias(libs.plugins.kotlinAndroid) -} - - -android { - namespace = rootProject.ext["applicationId"].toString() + ".stub" - compileSdk = 34 - - kotlinOptions { - jvmTarget = "1.8" - } -}