-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove plugin hot-reloading as it not compatible with TC2018 and below
Versions of TeamCity up to and including 2018.1.5 failed to laod the plugin correctly if the ` allow-runtime-reload="true"` option was enabled in the `teamcity-plugin.xml` file. The `teamcity-plugin.xml` is validated against an XML schema, so older versions of TeamCity fail to validate and load the configuration. Fixes issue #154
- Loading branch information
Showing
3 changed files
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 26 additions & 26 deletions
52
tcwebhooks-rest-api/src/main/teamcity-plugin-resources/teamcity-plugin.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<teamcity-plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:shemas-jetbrains-com:teamcity-plugin-v1-xml"> | ||
<info> | ||
<name>tcWebHooks-rest-api</name> | ||
<display-name>Web Hooks REST API (tcWebHooks)</display-name> | ||
<version>${majorVersion}</version> | ||
<description>REST API for configuring tcWebhooks plugin. | ||
This plugin adds support for configuring the tcWebHook Templates feature, with plans to support configuring Webhooks in future. | ||
|
||
- Branch: ${gitBranch} | ||
- Revision: ${gitHash} | ||
- Build: ${buildNumber} | ||
</description> | ||
<download-url>https://github.com/tcplugins/tcWebHooks/releases</download-url> | ||
<vendor> | ||
<name>Net Wolf</name> | ||
<url>http://netwolfuk.wordpress.com/teamcity-plugins/</url> | ||
</vendor> | ||
</info> | ||
<deployment use-separate-classloader="true" allow-runtime-reload="true"/> | ||
<dependencies> | ||
<plugin name="tcWebHooks"/> | ||
<plugin name="rest-api"/> | ||
</dependencies> | ||
</teamcity-plugin> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<teamcity-plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:shemas-jetbrains-com:teamcity-plugin-v1-xml"> | ||
<info> | ||
<name>tcWebHooks-rest-api</name> | ||
<display-name>Web Hooks REST API (tcWebHooks)</display-name> | ||
<version>${majorVersion}</version> | ||
<description>REST API for configuring tcWebhooks plugin. | ||
This plugin adds support for configuring the tcWebHook Templates feature, with plans to support configuring Webhooks in future. | ||
|
||
- Branch: ${gitBranch} | ||
- Revision: ${gitHash} | ||
- Build: ${buildNumber} | ||
</description> | ||
<download-url>https://github.com/tcplugins/tcWebHooks/releases</download-url> | ||
<vendor> | ||
<name>Net Wolf</name> | ||
<url>http://netwolfuk.wordpress.com/teamcity-plugins/</url> | ||
</vendor> | ||
</info> | ||
<deployment use-separate-classloader="true"/> | ||
<dependencies> | ||
<plugin name="tcWebHooks"/> | ||
<plugin name="rest-api"/> | ||
</dependencies> | ||
</teamcity-plugin> |
42 changes: 21 additions & 21 deletions
42
tcwebhooks-web-ui/src/main/teamcity-plugin-resources/teamcity-plugin.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<teamcity-plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:shemas-jetbrains-com:teamcity-plugin-v1-xml"> | ||
<info> | ||
<name>tcWebHooks</name> | ||
<display-name>Web Hooks (tcWebHooks)</display-name> | ||
<version>${majorVersion}</version> | ||
<description>Trigger webhook POST requests from build events. | ||
This plugin adds new tabs to the Project and Build pages for viewing and configuring WebHook events. | ||
|
||
- Branch: ${gitBranch} | ||
- Revision: ${gitHash} | ||
- Build: ${buildNumber} | ||
</description> | ||
<download-url>https://github.com/tcplugins/tcWebHooks/releases</download-url> | ||
<vendor> | ||
<name>Net Wolf</name> | ||
<url>http://netwolfuk.wordpress.com/teamcity-plugins/</url> | ||
</vendor> | ||
</info> | ||
<deployment use-separate-classloader="true" allow-runtime-reload="true"/> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<teamcity-plugin xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:shemas-jetbrains-com:teamcity-plugin-v1-xml"> | ||
<info> | ||
<name>tcWebHooks</name> | ||
<display-name>Web Hooks (tcWebHooks)</display-name> | ||
<version>${majorVersion}</version> | ||
<description>Trigger webhook POST requests from build events. | ||
This plugin adds new tabs to the Project and Build pages for viewing and configuring WebHook events. | ||
|
||
- Branch: ${gitBranch} | ||
- Revision: ${gitHash} | ||
- Build: ${buildNumber} | ||
</description> | ||
<download-url>https://github.com/tcplugins/tcWebHooks/releases</download-url> | ||
<vendor> | ||
<name>Net Wolf</name> | ||
<url>http://netwolfuk.wordpress.com/teamcity-plugins/</url> | ||
</vendor> | ||
</info> | ||
<deployment use-separate-classloader="true" /> | ||
</teamcity-plugin> |