Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
build: Fix publication
Browse files Browse the repository at this point in the history
  • Loading branch information
jcornaz committed Mar 29, 2020
1 parent fadd61f commit ca89776
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import com.jfrog.bintray.gradle.BintrayExtension
import com.jfrog.bintray.gradle.BintrayPlugin
import kr.motd.gradle.sphinx.gradle.SphinxTask
import org.codehaus.plexus.util.Os
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile
import org.jetbrains.kotlin.gradle.dsl.KotlinCompile
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile
import java.util.*

plugins {
Expand Down Expand Up @@ -161,8 +161,12 @@ subprojects {
}
}

val check by existing {
dependsOn("publishToMavenLocal")
}

val bintrayUpload by existing {
dependsOn("check")
dependsOn(check)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.github.jcornaz.kwik.core

internal object Kwik
4 changes: 2 additions & 2 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ dependencies {

testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")

testImplementation("com.github.jcornaz.kwik:kwik-evaluator-jvm:0.4.0")
testImplementation("com.github.jcornaz.kwik:kwik-generator-stdlib-jvm:0.4.0")
testImplementation("com.github.jcornaz.kwik:kwik-evaluator-jvm:0.5.0")
testImplementation("com.github.jcornaz.kwik:kwik-generator-stdlib-jvm:0.5.0")
}

//region Configure Kotlin JVM compilation
Expand Down

0 comments on commit ca89776

Please sign in to comment.