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
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apply plugin: "jacoco"

description = 'Executable API documentation in concordion'
group = 'org.concordion'
version = '0.0.4'
version = '0.0.5'

// bintray deployment
// configured in gradle.properties
Expand All @@ -22,15 +22,15 @@ if (hasProperty('bintray_Username')) {
}

wrapper {
gradleVersion = "4.1"
gradleVersion = "6.5"
}

repositories {
jcenter()
mavenCentral()
}

project.ext {
concordionVersion = "2.1.0"
concordionVersion = "3.1.2"
groovyVersion = "2.4.12"
junitVersion = "4.11"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public List<CommandCall> getExamples(CommandCall command) {
}

@Override
public void execute(CommandCall node, Evaluator evaluator, ResultRecorder resultRecorder) {
public void execute(CommandCall node, Evaluator evaluator, ResultRecorder resultRecorder, Fixture fixture) {
String exampleName = getExampleName(node);
SCRIPTING_LANGUAGE language = SCRIPTING_LANGUAGE.fromString(node.getExpression());

Expand Down