Skip to content

Commit

Permalink
Merge pull request #9 from komputing/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
ligi authored Jan 19, 2025
2 parents 62a4bbf + 5bc8a66 commit 35fc6b0
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: gradle
directory: "/"
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 5
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
x uses: actions/[email protected]

- name: Build
run: |
./gradlew test build
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/komputing/kethabi/issues/6
val kethereumVersion = "0.84.2"
val kethereumVersion = "0.86.0"

apply {
from("https://raw.githubusercontent.com/ligi/gradle-common/master/versions_plugin_stable_only.gradle")
Expand All @@ -11,7 +11,7 @@ buildscript {
}

dependencies {
classpath("com.github.ben-manes:gradle-versions-plugin:0.39.0")
classpath("com.github.ben-manes:gradle-versions-plugin:0.51.0")
}
}

Expand All @@ -20,7 +20,7 @@ repositories {
maven("https://www.jitpack.io")
}
plugins {
id("org.jetbrains.kotlin.jvm") version "1.5.20"
id("org.jetbrains.kotlin.jvm") version "2.0.21"
id("maven-publish")
}

Expand All @@ -39,16 +39,16 @@ configure<PublishingExtension> {
dependencies {
implementation(gradleApi())
implementation(localGroovy())
implementation("com.squareup:kotlinpoet:1.9.0")
implementation("com.squareup:kotlinpoet:2.0.0")

implementation("com.squareup.moshi:moshi-kotlin:1.12.0")

implementation("com.github.komputing.kethereum:abi:$kethereumVersion")
implementation("com.github.komputing.kethereum:abi_codegen:$kethereumVersion")

testImplementation("org.assertj:assertj-core:3.20.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")

testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("io.mockk:mockk:1.11.0")
Expand Down

0 comments on commit 35fc6b0

Please sign in to comment.