diff --git a/README.md b/README.md index 6a52ee7..46951aa 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# {library} +# Test Integration. -{description} +Library to test integration for aura ascend. ## Publish library locally. @@ -25,8 +25,8 @@ To authenticate with Gradle to access repositories that require authentication, Here's how you can do it: 1. Open or create the `gradle.properties` file in your Gradle user home directory: - - On Unix-like systems (Linux, macOS), this directory is typically `~/.gradle/`. - - On Windows, this directory is typically `C:\Users\\.gradle\`. + - On Unix-like systems (Linux, macOS), this directory is typically `~/.gradle/`. + - On Windows, this directory is typically `C:\Users\\.gradle\`. 2. Add the following lines to the `gradle.properties` file: ```properties repository..user=your_user diff --git a/build.gradle.kts b/build.gradle.kts index e304981..091aca2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,10 +5,7 @@ plugins { dependencies { - testImplementation(aa.kotlin.junit5) - - testRuntimeOnly(aa.junit.platform.launcher) } group = "ltd.lulz.library" -description = "library template" +description = "library test integration" diff --git a/gradle.properties b/gradle.properties index 918eb4b..0415790 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ version=0.1.0-SNAPSHOT -catalog=0.1.0 +catalog=0.2.0-SNAPSHOT diff --git a/settings.gradle.kts b/settings.gradle.kts index f7d4299..461b4c6 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -34,4 +34,4 @@ pluginManagement.repositories { gradlePluginPortal() } -rootProject.name = "library" +rootProject.name = "test-integration" diff --git a/src/main/kotlin/ltd/lulz/library/LulzLibrary.kt b/src/main/kotlin/ltd/lulz/library/LulzLibrary.kt deleted file mode 100644 index 42340b8..0000000 --- a/src/main/kotlin/ltd/lulz/library/LulzLibrary.kt +++ /dev/null @@ -1,3 +0,0 @@ -package ltd.lulz.library - -class LulzLibrary diff --git a/src/test/kotlin/ltd/lulz/library/LulzLibraryTest.kt b/src/test/kotlin/ltd/lulz/library/LulzLibraryTest.kt deleted file mode 100644 index 54d9750..0000000 --- a/src/test/kotlin/ltd/lulz/library/LulzLibraryTest.kt +++ /dev/null @@ -1,11 +0,0 @@ -package ltd.lulz.library - -import kotlin.test.Test - -class LulzLibraryTest { - - @Test - fun `Lulz Library Test`() { - // Placeholder - } -}