Skip to content

Commit

Permalink
Updated to use current version of Horreum 0.15.x
Browse files Browse the repository at this point in the history
  • Loading branch information
whitingjr committed Sep 24, 2024
1 parent 9052b35 commit 22d3a96
Show file tree
Hide file tree
Showing 18 changed files with 480 additions and 337 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

def configurations = [
[ platform: 'linux', jdk: '8' ],
[ platform: 'linux', jdk: '11', jenkins: '2.332.2' ],
[ platform: 'linux', jdk: '11', jenkins: '2.361' ],
]
buildPlugin(configurations: configurations)
13 changes: 7 additions & 6 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ horreumUpload (
----

You can access the response status code and content within a groovy script:
You can access the response within a groovy script:

[source,groovy]
----
Expand All @@ -60,17 +60,18 @@ def response = horreumUpload (
abortOnfailure: false,
quiet: false
)
println("Status: "+response.status)
println("Content: "+response.content)
println("Response: "+response)
----

== Building
The created Run ID by Horreum is provided in the response.

The plugin can be built and tested locally using a Maven HPI:
== Building and Testing

The plugin can be built and tested using Maven and JUnit:

[source, bash]
----
mvn hpi:run
mvn test
----

== Configure Global Settings
Expand Down
Loading

0 comments on commit 22d3a96

Please sign in to comment.