Skip to content
This repository has been archived by the owner on May 1, 2019. It is now read-only.

Commit

Permalink
Bumping to the 3.0.2-SNAPSHOT and fixing URL
Browse files Browse the repository at this point in the history
  • Loading branch information
jrichard committed Apr 17, 2017
1 parent 2b2540b commit 7e52e6b
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.blackducksoftware.integration</groupId>
<artifactId>hub-teamcity</artifactId>
<version>3.0.1</version>
<version>3.0.2-SNAPSHOT</version>
</parent>

<artifactId>hub-teamcity-agent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.blackducksoftware.integration</groupId>
<artifactId>hub-teamcity</artifactId>
<version>3.0.1</version>
<version>3.0.2-SNAPSHOT</version>
</parent>

<artifactId>hub-teamcity-assembly</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.blackducksoftware.integration</groupId>
<artifactId>hub-teamcity</artifactId>
<version>3.0.1</version>
<version>3.0.2-SNAPSHOT</version>
</parent>

<artifactId>hub-teamcity-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>hub-teamcity</artifactId>
<version>3.0.1</version>
<version>3.0.2-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Black Duck Hub Plugin for TeamCity</name>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.blackducksoftware.integration</groupId>
<artifactId>hub-teamcity</artifactId>
<version>3.0.1</version>
<version>3.0.2-SNAPSHOT</version>
</parent>

<artifactId>hub-teamcity-server</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<%@ include file="/include.jsp" %>
<%@ taglib prefix="forms" tagdir="/WEB-INF/tags/forms" %>

<link href="${teamcityBaseUrl}${teamcityPluginResourcesPath}font-awesome-4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />

<jsp:useBean id="hubConfigPersistenceManager" type="com.blackducksoftware.integration.hub.teamcity.server.global.ServerHubConfigPersistenceManager" scope="request" />
<jsp:useBean id="teamcityBaseUrl" type="java.lang.String" scope="request"/>

<c:url var="controllerUrl" value="/admin/hub/serverHubConfigTab.html"/>
<c:url var="closeLogoUrl" value="${teamcityPluginResourcesPath}images/close.gif"/>

<bs:linkScript>
/js/bs/testConnection.js
Expand Down Expand Up @@ -207,7 +207,7 @@
</script>

<div id="bdHubContainer">
<form id="bdHubForm" action="${teamcityBaseUrl}/admin/hub/serverHubConfigTab.html" autocomplete="off">
<form id="bdHubForm" action="${controllerUrl}" autocomplete="off">
<h3>Hub Settings</h3>
<table border="0" style="width: 100%">
<tr>
Expand Down Expand Up @@ -386,7 +386,6 @@
<div class="saveButtonsBlock" id="saveButtonsBlock">
<input type="button" value="Save" id=saveButton class="btn btn_primary submitButton" onclick="Config.save();"></input>
<input type="button" value="Test connection" class="btn btn_primary submitButton" id="testConnection" onclick="TestConnectionDialog.testConnection();"></input>
<i id="saving" style="display: none;" class="fa fa-spinner fa-spin fa-fw"></i>
<input type="hidden" id="publicKey" name="publicKey" value="<c:out value='${hubConfigPersistenceManager.hexEncodedPublicKey}'/>" />
</div>
</form>
Expand All @@ -396,7 +395,7 @@
<div class="dialogHeader">
<div class="closeWindow">
<a title="Close dialog window" onclick="BS.TestConnectionDialog.close();" showdiscardchangesmessage='false'>
<img src="${teamcityBaseUrl}${teamcityPluginResourcesPath}images/close.gif" />
<img src="${closeLogoUrl}" />
</a>
</div>
<div class="dialogHandle">
Expand All @@ -414,7 +413,7 @@
<div class="dialogHeader">
<div class="closeWindow">
<a title="Close dialog window" onclick="Config.close();" showdiscardchangesmessage='false'>
<img src="${teamcityBaseUrl}${teamcityPluginResourcesPath}images/close.gif" />
<img src="${closeLogoUrl}" />
</a>
</div>
<div class="dialogHandle">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
frame.height = frame.contentWindow.document.body.scrollHeight;
}, 200);
};
frame.src="${teamcityBaseUrl}${hubRiskReportUrl}";
frame.src="${hubRiskReportUrl}";
</script>

0 comments on commit 7e52e6b

Please sign in to comment.