Skip to content

Commit

Permalink
Merge pull request #1009 from mikepenz/feature/test_module
Browse files Browse the repository at this point in the history
Introduce test module with limited dependencies
  • Loading branch information
mikepenz authored Aug 23, 2024
2 parents 803e72a + 23497da commit 3b2ff20
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app-test/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Usage

### Generate Dependency Information

```bash
./gradlew :app-test:exportLibraryDefinitions -PaboutLibraries.exportPath=files/
```
21 changes: 21 additions & 0 deletions app-test/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
plugins {
kotlin("multiplatform")
id("com.mikepenz.aboutlibraries.plugin")
}

kotlin {
jvm()

sourceSets {
jvmMain {
dependencies {
// https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api
implementation("javax.annotation:javax.annotation-api:1.3.2")
}
}
}
}

aboutLibraries {
fetchRemoteLicense = true
}
Loading

0 comments on commit 3b2ff20

Please sign in to comment.