Fix jrereleaser errors for besu-rlp-and-mappers (#1141)

* Add description to besu-rlp-and-mappers package

* jrereleaser info logs

* default description
This commit is contained in:
Gaurav Ahuja
2025-06-11 12:58:00 -04:00
committed by GitHub
parent 2a131d775a
commit 47085c2182
3 changed files with 4 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN_RELEASE_ACCESS }}
- name: Build and Release to Maven Central
run: ./gradlew --stacktrace -p jvm-libs jreleaserRelease -Pversion=$VERSION
run: ./gradlew --stacktrace --info -p jvm-libs jreleaserRelease -Pversion=$VERSION
env:
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN_RELEASE_ACCESS }}
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -23,7 +23,7 @@ publishing {
pom {
name = "Linea - ${_artifactId}"
description = project.description
description = project.description ?: name
url = 'https://linea.build/'
licenses {

View File

@@ -2,6 +2,8 @@ plugins {
id 'net.consensys.zkevm.kotlin-library-conventions'
}
description = 'Utilities for RLP encoding/decoding and mappers for besu to linea domain models'
dependencies {
api(project(':jvm-libs:generic:extensions:kotlin'))
api(project(':jvm-libs:generic:extensions:futures'))