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 * feat: revise description message
15 lines
417 B
Groovy
15 lines
417 B
Groovy
plugins {
|
|
id 'net.consensys.zkevm.kotlin-library-conventions'
|
|
id 'java-test-fixtures'
|
|
}
|
|
|
|
description="Interfaces for interaction with Linea Smart Contract"
|
|
|
|
dependencies {
|
|
api project(':jvm-libs:linea:core:domain-models')
|
|
api project(':jvm-libs:generic:extensions:futures')
|
|
api project(':jvm-libs:generic:extensions:kotlin')
|
|
|
|
testFixturesApi(testFixtures(project(':jvm-libs:linea:core:domain-models')))
|
|
}
|