Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ buildscript {
apply from: file("${rootDir}/versionInfo.gradle")

repositories {
gradlePluginPortal()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
Expand All @@ -21,6 +22,7 @@ buildscript {
classpath "org.scoverage:gradle-scoverage:${versions.gradleScoverage}"
classpath "com.github.alisiikh:gradle-scalastyle-plugin:${versions.scalaStyle}"
classpath "org.jreleaser:org.jreleaser.gradle.plugin:${versions.gradleJReleaser}"
classpath "io.gatling.gradle:io.gatling.gradle.gradle.plugin:${versions.gatling}"
}

// lock buildscript dependencies
Expand Down Expand Up @@ -99,8 +101,8 @@ allprojects {
}
}

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

project(':warp-core') {
dependencies {
Expand All @@ -109,8 +111,11 @@ project(':warp-core') {
}

project(':warp-core-gatling') {
apply plugin: 'io.gatling.gradle'
dependencies {
api project(':warp-core')
// TODO would be nice to declare a dependency on .classes here to avoid building jar
gatling project(':warp-core')
}
}

Expand Down
11 changes: 10 additions & 1 deletion buildscript-gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ com.fasterxml:classmate:1.7.0=classpath
com.github.alisiikh:gradle-scalastyle-plugin:3.4.1=classpath
com.github.luben:zstd-jni:1.5.7-3=classpath
com.github.sbaudoin:yamllint:1.6.1=classpath
com.github.spotbugs:spotbugs-annotations:4.8.4=classpath
com.github.spullara.mustache.java:compiler:0.9.14=classpath
com.github.victools:jsonschema-generator:4.38.0=classpath
com.github.victools:jsonschema-module-jackson:4.38.0=classpath
com.github.zafarkhaja:java-semver:0.9.0=classpath
com.google.code.findbugs:jsr305:3.0.2=classpath
com.googlecode.javaewah:JavaEWAH:1.1.13=classpath
com.hierynomus:asn-one:0.6.0=classpath
com.hierynomus:sshj:0.40.0=classpath
Expand All @@ -40,6 +42,7 @@ com.netflix.nebula:nebula-publishing-plugin:17.3.0=classpath
com.netflix.nebula:nebula-release-plugin:15.0.3=classpath
com.perforce:p4java:2015.2.1365273=classpath
com.trilead:trilead-ssh2:1.0.0-build220=classpath
com.typesafe:config:1.4.3=classpath
commons-beanutils:commons-beanutils:1.8.0=classpath
commons-codec:commons-codec:1.18.0=classpath
commons-collections:commons-collections:3.2.1=classpath
Expand All @@ -49,6 +52,12 @@ commons-logging:commons-logging:1.2=classpath
commons-net:commons-net:3.11.1=classpath
de.regnis.q.sequence:sequence-library:1.0.3=classpath
dev.failsafe:failsafe:3.3.2=classpath
gradle.plugin.io.gatling.gradle:gatling-gradle-plugin:3.12.0=classpath
io.gatling.gradle:io.gatling.gradle.gradle.plugin:3.12.0=classpath
io.gatling:gatling-asm-shaded:9.7.0=classpath
io.gatling:gatling-enterprise-plugin-commons:1.9.6=classpath
io.gatling:gatling-scanner:1.6.1=classpath
io.gatling:gatling-shared-cli:0.0.3=classpath
io.get-coursier:interface:1.0.8=classpath
io.github.cosmicsilence:gradle-scalafix:0.1.14=classpath
io.github.openfeign.form:feign-form:3.8.0=classpath
Expand Down Expand Up @@ -85,7 +94,7 @@ org.bouncycastle:bcprov-jdk18on:1.81=classpath
org.bouncycastle:bcutil-jdk18on:1.81=classpath
org.codehaus.groovy.modules.http-builder:http-builder:0.7.1=classpath
org.codehaus.plexus:plexus-interpolation:1.25=classpath
org.codehaus.plexus:plexus-utils:3.2.1=classpath
org.codehaus.plexus:plexus-utils:4.0.1=classpath
org.codehaus.woodstox:stax2-api:4.2.2=classpath
org.commonmark:commonmark-ext-autolink:0.21.0=classpath
org.commonmark:commonmark:0.21.0=classpath
Expand Down
2 changes: 1 addition & 1 deletion versionInfo.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ project.ext.versions = [
, commonsIo: '2.16.0'
, coveralls: '2.8.2'
, flyway: '5.2.1'
, gatling: '3.10.5'
, gatling: '3.12.0'
, gradleGit: '4.1.1'
, gradleScoverage: '8.0.3'
, gradleJReleaser: '1.19.0'
Expand Down
7 changes: 7 additions & 0 deletions warp-core-gatling/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import io.gatling.gradle.GatlingRunTask

tasks.register('gatlingRunAll', GatlingRunTask) {
runAllSimulations = true
}

test.dependsOn('gatlingRunAll')
136 changes: 0 additions & 136 deletions warp-core-gatling/locking/warp-core-gatling_2.12.lockfile

This file was deleted.

Loading