├── .gitignore ├── LICENSE.txt ├── README.md ├── circle.yml ├── images ├── artifact-paths.png ├── server-url.png └── webhooks-tab.png ├── plugin-assembly.xml ├── pom.xml ├── src └── main │ ├── java │ └── io │ │ └── cloudnative │ │ └── teamcity │ │ ├── LombokExtensions.java │ │ ├── WebhookPayload.java │ │ ├── WebhooksConstants.java │ │ ├── WebhooksController.java │ │ ├── WebhooksListener.java │ │ ├── WebhooksProjectTab.java │ │ ├── WebhooksSettings.java │ │ └── WebhooksUtils.java │ └── resources │ ├── META-INF │ └── build-server-plugin-webhooks.xml │ └── buildServerResources │ └── projectTab.jsp └── teamcity-plugin.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | target -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/circle.yml -------------------------------------------------------------------------------- /images/artifact-paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/images/artifact-paths.png -------------------------------------------------------------------------------- /images/server-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/images/server-url.png -------------------------------------------------------------------------------- /images/webhooks-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/images/webhooks-tab.png -------------------------------------------------------------------------------- /plugin-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/plugin-assembly.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/LombokExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/LombokExtensions.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhookPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhookPayload.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhooksConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhooksConstants.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhooksController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhooksController.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhooksListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhooksListener.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhooksProjectTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhooksProjectTab.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhooksSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhooksSettings.java -------------------------------------------------------------------------------- /src/main/java/io/cloudnative/teamcity/WebhooksUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/java/io/cloudnative/teamcity/WebhooksUtils.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/build-server-plugin-webhooks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/resources/META-INF/build-server-plugin-webhooks.xml -------------------------------------------------------------------------------- /src/main/resources/buildServerResources/projectTab.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/src/main/resources/buildServerResources/projectTab.jsp -------------------------------------------------------------------------------- /teamcity-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evgeny-goldin/teamcity-webhooks/HEAD/teamcity-plugin.xml --------------------------------------------------------------------------------