Skip to content

Commit c98fa6f

Browse files
committed
Disable html escape in plugins index
1 parent eb9361f commit c98fa6f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

buildSrc/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ The plugin is uploaded to the Gradle plugins portal.
44

55
To check the status use [this link](https://plugins.gradle.org/u/nextflowio).
66

7-
Use the task `./gradlew publishPlugins` to publish the plugin.
8-
7+
Use the task `../gradlew publishPlugins` in the `buildSrc` directory to publish the plugin.

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
mavenCentral()
88
}
99

10-
version = "1.0.0"
10+
version = "1.0.1"
1111
group = "io.nextflow"
1212

1313
dependencies {

buildSrc/src/main/groovy/io/nextflow/gradle/tasks/GithubRepositoryPublisher.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ class GithubRepositoryPublisher extends DefaultTask {
9999

100100
new GsonBuilder()
101101
.setPrettyPrinting()
102+
.disableHtmlEscaping()
102103
.create()
103104
.toJson(mainIndex)
104105
}

0 commit comments

Comments
 (0)