skoda-api-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>be.nicholasmeyers</groupId> <artifactId>skoda-api-client</artifactId> <version>1.2.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>be.nicholasmeyers</groupId> <artifactId>skoda-api-client</artifactId> <version>1.2.0</version> <name>skoda-api-client</name> <description>skoda-api-client</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> </properties> <licenses> <license> <name>The MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>nicholasM95</id> <name>Nicholas Meyers</name> <email>nicholas.meyers@hotmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/nicholasM95/skoda-api-client.git</connection> <url>https://github.com/nicholasM95/skoda-api-client.git</url> <developerConnection>scm:git:https://github.com/nicholasM95/skoda-api-client.git</developerConnection> <tag>HEAD</tag> </scm> <url>https://github.com/nicholasM95/skoda-api-client/</url> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.12.0</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> <version>4.12.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.13.0</version> </dependency> <dependency> <groupId>io.gsonfire</groupId> <artifactId>gson-fire</artifactId> <version>1.9.0</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>2.1.1</version> </dependency> <dependency> <groupId>be.nicholasmeyers.skoda-connector</groupId> <artifactId>skoda-connector</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.12.2</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.12.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <failOnError>false</failOnError> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.openapitools</groupId> <artifactId>openapi-generator-maven-plugin</artifactId> <version>7.12.0</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>skoda-api-server.yaml</inputSpec> <generatorName>java</generatorName> <generateModels>true</generateModels> <modelPackage>be.nicholasmeyers.skoda.client.resource</modelPackage> <generateApis>true</generateApis> <apiPackage>be.nicholasmeyers.skoda.client</apiPackage> <configOptions> <!-- Generate API files based on tags --> <interfaceOnly>true</interfaceOnly> <requestMappingMode>none</requestMappingMode> <skipDefaultInterface>true</skipDefaultInterface> <skipDefaultConstructor>true</skipDefaultConstructor> <useJakartaEe>true</useJakartaEe> </configOptions> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>