project setup

- update README.md
- update name and readme for library
This commit is contained in:
2025-09-13 13:38:37 +02:00
parent a05e314dfd
commit ae47c718e5
6 changed files with 7 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
# {library} # Test Integration.
{description} Library to test integration for aura ascend.
## Publish library locally. ## Publish library locally.

View File

@@ -5,10 +5,7 @@ plugins {
dependencies { dependencies {
testImplementation(aa.kotlin.junit5)
testRuntimeOnly(aa.junit.platform.launcher)
} }
group = "ltd.lulz.library" group = "ltd.lulz.library"
description = "library template" description = "library test integration"

View File

@@ -1,2 +1,2 @@
version=0.1.0-SNAPSHOT version=0.1.0-SNAPSHOT
catalog=0.1.0 catalog=0.2.0-SNAPSHOT

View File

@@ -34,4 +34,4 @@ pluginManagement.repositories {
gradlePluginPortal() gradlePluginPortal()
} }
rootProject.name = "library" rootProject.name = "test-integration"

View File

@@ -1,3 +0,0 @@
package ltd.lulz.library
class LulzLibrary

View File

@@ -1,11 +0,0 @@
package ltd.lulz.library
import kotlin.test.Test
class LulzLibraryTest {
@Test
fun `Lulz Library Test`() {
// Placeholder
}
}