mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
chore: added test fixtures dependencies in kotlin-common-conventions (#1178)
* chore: added test fixtures dependencies in kotlin-common-conventions * feat: revise description message
This commit is contained in:
@@ -19,7 +19,7 @@ on:
|
|||||||
pluginName:
|
pluginName:
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
description: 'plugin name used for the tag name, e.g staterecovery'
|
description: 'plugin name used for the tag name, e.g linea-staterecovery'
|
||||||
workspaceModulePath:
|
workspaceModulePath:
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
|||||||
@@ -2,6 +2,15 @@ plugins {
|
|||||||
id 'net.consensys.zkevm.kotlin-common-minimal-conventions'
|
id 'net.consensys.zkevm.kotlin-common-minimal-conventions'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
testFixturesDeps {
|
||||||
|
extendsFrom implementation // Inherit plugin's dependencies
|
||||||
|
canBeConsumed = false
|
||||||
|
canBeResolved = false
|
||||||
|
}
|
||||||
|
testFixturesImplementation.extendsFrom testFixturesDeps
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api platform("io.vertx:vertx-stack-depchain:${libs.versions.vertx.get()}")
|
api platform("io.vertx:vertx-stack-depchain:${libs.versions.vertx.get()}")
|
||||||
//<utils>
|
//<utils>
|
||||||
|
|||||||
@@ -6,15 +6,6 @@ plugins {
|
|||||||
|
|
||||||
description = "JSON RPC 2.0 utilities"
|
description = "JSON RPC 2.0 utilities"
|
||||||
|
|
||||||
configurations {
|
|
||||||
testFixturesDeps {
|
|
||||||
extendsFrom implementation // Inherit plugin's dependencies
|
|
||||||
canBeConsumed = false
|
|
||||||
canBeResolved = false
|
|
||||||
}
|
|
||||||
testFixturesImplementation.extendsFrom testFixturesDeps
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":jvm-libs:linea:core:metrics")
|
implementation project(":jvm-libs:linea:core:metrics")
|
||||||
implementation project(":jvm-libs:linea:metrics:micrometer")
|
implementation project(":jvm-libs:linea:metrics:micrometer")
|
||||||
|
|||||||
@@ -5,15 +5,6 @@ plugins {
|
|||||||
|
|
||||||
description="Interfaces for interaction with Linea Smart Contract"
|
description="Interfaces for interaction with Linea Smart Contract"
|
||||||
|
|
||||||
configurations {
|
|
||||||
testFixturesDeps {
|
|
||||||
extendsFrom implementation // Inherit plugin's dependencies
|
|
||||||
canBeConsumed = false
|
|
||||||
canBeResolved = false
|
|
||||||
}
|
|
||||||
testFixturesImplementation.extendsFrom testFixturesDeps
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':jvm-libs:linea:core:domain-models')
|
api project(':jvm-libs:linea:core:domain-models')
|
||||||
api project(':jvm-libs:generic:extensions:futures')
|
api project(':jvm-libs:generic:extensions:futures')
|
||||||
|
|||||||
@@ -5,15 +5,6 @@ plugins {
|
|||||||
|
|
||||||
description = "Linea L1 smart contract client"
|
description = "Linea L1 smart contract client"
|
||||||
|
|
||||||
configurations {
|
|
||||||
testFixturesDeps {
|
|
||||||
extendsFrom implementation // Inherit plugin's dependencies
|
|
||||||
canBeConsumed = false
|
|
||||||
canBeResolved = false
|
|
||||||
}
|
|
||||||
testFixturesImplementation.extendsFrom testFixturesDeps
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':jvm-libs:linea:core:domain-models')
|
api project(':jvm-libs:linea:core:domain-models')
|
||||||
api project(':jvm-libs:linea:clients:interfaces')
|
api project(':jvm-libs:linea:clients:interfaces')
|
||||||
|
|||||||
Reference in New Issue
Block a user