Skip to content

Commit

Permalink
changed server type to GOCD; fixed SDK version to 1.4.16 in which thi…
Browse files Browse the repository at this point in the history
…s server type was introduced; (1.3)
  • Loading branch information
ralfhergert committed Jan 4, 2018
1 parent 644c061 commit 8846581
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sourceCompatibility = 1.7

dependencies {
compile 'cd.go.plugin:go-plugin-api:17.9.+'
compile('com.hpe.adm.octane.ciplugins:integrations-sdk:1.4.+')
compile('com.hpe.adm.octane.ciplugins:integrations-sdk:1.4.16')
compile 'com.google.code.gson:gson:2.8.+'
compile 'org.apache.httpcomponents:httpclient:4.5.2' // this httpclient is also contained in the SDK, but some classes of it are missing, so we need to have the original file.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public CIPluginInfo getPluginInfo() {
public CIServerInfo getServerInfo() {
return DTOFactory.getInstance().newDTO(CIServerInfo.class)
.setUrl(goServerURL)
.setType(CIServerTypes.UNKNOWN) // TODO change into CIServerTypes.GoCD as soon as available.
.setType(CIServerTypes.GOCD.value())
.setSendingTime(System.currentTimeMillis())
.setInstanceId(goServerID);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<go-plugin id="com.haufelexware.gocd.plugin.octane" version="1">
<about>
<name>OctaneGoCDPlugin</name>
<version>1.2</version>
<version>1.3</version>
<target-go-version>17.9.0</target-go-version>
<description>Allows integration of GoCD with HPE ALM Octane: making pipelines and test results accessible in HPE ALM Octane.</description>
<vendor>
Expand Down

0 comments on commit 8846581

Please sign in to comment.