leanix-webhooks-sdk-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.leanix</groupId> <artifactId>leanix-webhooks-sdk-java</artifactId> <version>0.11.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.leanix</groupId> <artifactId>leanix-webhooks-sdk-java</artifactId> <version>0.11.3</version> <parent> <groupId>net.leanix.poms</groupId> <artifactId>sdk-parent</artifactId> <version>2.0.4</version> <relativePath /> </parent> <name>LeanIX Webhooks Java SDK</name> <description>SDK for Java to access LeanIX Webhooks REST API</description> <url>https://developer.leanix.net</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/leanix/leanix-webhooks-sdk-java</url> <connection>scm:git:git@github.com:leanix/leanix-webhooks-sdk-java.git</connection> <developerConnection> scm:git:git@github.com:leanix/leanix-webhooks-sdk-java.git </developerConnection> </scm> <developers> <developer> <id>andrechrist</id> <name>Andre Christ</name> <email>andre.christ@leanix.net</email> <url>https://www.leanix.net</url> <organization>LeanIX GmbH</organization> <organizationUrl>https://www.leanix.net</organizationUrl> </developer> </developers> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <sdk-name>webhooks</sdk-name> <leanix-dropkit-sdk-utils-version>1.1.4</leanix-dropkit-sdk-utils-version> <!-- Specify the host which provides the swagger 2.0 API description --> <codegenHost>eu-svc.leanix.net</codegenHost> <swagger-inputSpec>https://${codegenHost}/services/webhooks/v1/api-docs/swagger.json</swagger-inputSpec> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*ApiTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <!-- This profile is used to generate the Client SDK completely new --> <profile> <id>codegen</id> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <copy todir="src" overwrite="true"> <fileset dir="target/generated-sources/swagger/src" includes="**" /> </copy> <copy todir="src/main" overwrite="true"> <fileset dir="target/adapted-sources" includes="**" /> </copy> <copy todir="src/main/java/net/leanix/webhooks/api/" overwrite="true"> <fileset dir="add-in/api/" includes="**" /> </copy> <copy file="add-in/apiclient/RawJsonDeserializer.java" todir="src/main/java/net/leanix/dropkit/apiclient/" overwrite="true" /> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>