leanix-mtm-sdk-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.leanix</groupId>
<artifactId>leanix-mtm-sdk-java</artifactId>
<version>1.7.25</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-mtm-sdk-java</artifactId>
<packaging>jar</packaging>
<version>1.7.25</version>
<parent>
<groupId>net.leanix.poms</groupId>
<artifactId>sdk-parent</artifactId>
<version>2.0.4</version>
<relativePath />
</parent>
<name>leanix-mtm-sdk-java</name>
<description>SDK for Java to access LeanIX MTM 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-mtm-sdk-java</url>
<connection>scm:git:git@github.com:leanix/leanix-mtm-sdk-java.git</connection>
<developerConnection>
scm:git:git@github.com:leanix/leanix-mtm-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>
<build>
<plugins>
<!-- Added the resouce plugin to fix one generaded model class, here Setting.java -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>copy-resources-adapted-files</id>
<!-- here the phase you need -->
<phase>compile</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/src/main/java</outputDirectory>
<resources>
<resource>
<directory>src/templates/java/</directory>
<filtering>false</filtering>
</resource>
</resources>
<overwrite>true</overwrite>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<sdk-name>mtm</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/mtm/v1/api-docs/swagger.json</swagger-inputSpec>
<java.version>11</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</project>