Skip to content

Commit

Permalink
feat: config as java code (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier committed Oct 1, 2024
1 parent 213f003 commit 67cf437
Show file tree
Hide file tree
Showing 79 changed files with 1,452 additions and 812 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md).

#### Major Changes

- Moved Catalog Crawler to the Authority Portal
- Removed Catalog Crawler as it will be added to the Authority Portal to prevent circular dependencies

#### Minor Changes

#### Patch Changes

### Deployment Migration Notes
- Refactoring: Config as Java Code### Deployment Migration Notes

_No special deployment migration steps required_

Expand Down
31 changes: 31 additions & 0 deletions config/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

plugins {
`java-library`
`maven-publish`
}

dependencies {
annotationProcessor(libs.lombok)
compileOnly(libs.lombok)

api(libs.edc.bootSpi)


testAnnotationProcessor(libs.lombok)
testCompileOnly(libs.lombok)
testImplementation(libs.mockito.core)
testImplementation(libs.mockito.junitJupiter)
testImplementation(libs.assertj.core)
testImplementation(libs.junit.api)
testRuntimeOnly(libs.junit.engine)
}

group = libs.versions.sovityEdcGroup.get()

publishing {
publications {
create<MavenPublication>(project.name) {
from(components["java"])
}
}
}
Loading

0 comments on commit 67cf437

Please sign in to comment.