webhook-client-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.pageseeder.webhook.client</groupId> <artifactId>webhook-client-example</artifactId> <version>0.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.pageseeder.webhook.client</groupId> <artifactId>webhook-client-example</artifactId> <version>0.0.2</version> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.pageseeder.webhook.client</groupId> <artifactId>webhook-client</artifactId> <version>0.0.2</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pageseeder.berlioz</groupId> <artifactId>pso-berlioz</artifactId> <version>0.12.1</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pageseeder.bastille</groupId> <artifactId>pso-bastille</artifactId> <version>0.10.0</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pageseeder.xmlwriter</groupId> <artifactId>pso-xmlwriter</artifactId> <version>1.0.4</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.2.3</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.pageseeder.berlioz</groupId> <artifactId>pso-berlioz-kickstart</artifactId> <version>0.11.3</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-jetty</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> </dependencies> <name>Pageseeder Webhook Client</name> <description>Example of how to use Webhook Client</description> <url>https://www.pageseeder.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <organization> <name>Allette Systems</name> <url>https://www.allette.com.au</url> </organization> <scm> <url>git@github.com:pageseeder/webhook-client.git</url> <connection>scm:git:git@github.com:pageseeder/webhook-client.git</connection> <developerConnection>scm:git:git@github.com:pageseeder/webhook-client.git</developerConnection> </scm> <developers> <developer> <id>ccabral</id> <name>Carlos Cabral</name> <email>ccabral@allette.com.au</email> </developer> </developers> </project>