Integrate logging subproject into base subproject
All checks were successful
PRs & Pushes / build (push) Successful in 3m25s
PRs & Pushes / build-apidoc (push) Successful in 3m24s

This commit is contained in:
JeremyStar™ 2024-12-15 19:22:25 +01:00
parent c540060bcd
commit 86dd1e4520
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
35 changed files with 0 additions and 27 deletions

View file

@ -17,9 +17,3 @@
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
// Dependencies
dependencies {
// sos!engine
implementation(project(":logging"))
}

View file

@ -1,19 +0,0 @@
/*
* STAROPENSOURCE ENGINE SOURCE FILE
* Copyright (c) 2024 The StarOpenSource Engine Authors
* Licensed under the GNU Affero General Public License v3
* with an exception allowing classpath linking.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

View file

@ -23,6 +23,5 @@ rootProject.name = "sos!engine"
// Subprojects // Subprojects
include("") // scan root include("") // scan root
include("logging")
include("base") include("base")
include("testapp") include("testapp")

View file

@ -27,7 +27,6 @@ plugins {
// Dependencies // Dependencies
dependencies { dependencies {
// sos!engine // sos!engine
implementation(project(":logging"))
implementation(project(":base")) implementation(project(":base"))
} }