Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config as java code #1051

Merged
merged 21 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
ununhexium marked this conversation as resolved.
Show resolved Hide resolved

_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
Loading