cobrofacil
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cortier</groupId>
<artifactId>cobrofacil</artifactId>
<version>1.0.8</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cortier</groupId>
<artifactId>cobrofacil</artifactId>
<version>1.0.8</version>
<packaging>jar</packaging>
<name>Cobrofácil SDK</name>
<description>An SDK for the Cobrofácil REST API.</description>
<url>https://docs.cobrofacil.com</url>
<organization>
<name>Cortier</name>
<url>https://cortier.com</url>
</organization>
<licenses>
<license>
<name>Proprietary</name>
<url>https://docs.cobrofacil.com</url>
<distribution>repo</distribution>
<comments>Closed-source proprietary software. All rights reserved.</comments>
</license>
</licenses>
<developers>
<developer>
<id>cortier</id>
<name>Cortier</name>
<organization>Cortier</organization>
<organizationUrl>https://cortier.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/cortier/cobrofacil-sdk-java.git</connection>
<developerConnection>scm:git:ssh://git@github.com/cortier/cobrofacil-sdk-java.git</developerConnection>
<url>https://github.com/cortier/cobrofacil-sdk-java</url>
<tag>HEAD</tag>
</scm>
<properties>
<java.version>8</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<openapi.generator.version>7.22.0</openapi.generator.version>
<openapi.inputSpec>${project.basedir}/src/main/openapi/openapi.yaml</openapi.inputSpec>
<central.publishing.plugin.version>0.9.0</central.publishing.plugin.version>
<maven.gpg.plugin.version>3.2.7</maven.gpg.plugin.version>
<maven.javadoc.plugin.version>3.11.2</maven.javadoc.plugin.version>
<maven.source.plugin.version>3.3.1</maven.source.plugin.version>
<maven.surefire.plugin.version>3.5.2</maven.surefire.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.11.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>4.11.0</version>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>${openapi.generator.version}</version>
<executions>
<execution>
<id>generate-cobrofacil-client</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${openapi.inputSpec}</inputSpec>
<templateDirectory>${project.basedir}/src/main/openapi/templates/Java</templateDirectory>
<generatorName>java</generatorName>
<library>okhttp-gson</library>
<templateDirectory>${project.basedir}/src/main/openapi/templates/Java</templateDirectory>
<generateApiTests>false</generateApiTests>
<generateModelTests>false</generateModelTests>
<generateApiDocumentation>false</generateApiDocumentation>
<generateModelDocumentation>false</generateModelDocumentation>
<configOptions>
<groupId>com.cortier</groupId>
<artifactId>cobrofacil</artifactId>
<artifactVersion>${project.version}</artifactVersion>
<invokerPackage>com.cortier.cobrofacil.generated</invokerPackage>
<apiPackage>com.cortier.cobrofacil.generated.api</apiPackage>
<modelPackage>com.cortier.cobrofacil.generated.model</modelPackage>
<dateLibrary>java8</dateLibrary>
<annotationLibrary>none</annotationLibrary>
<hideGenerationTimestamp>true</hideGenerationTimestamp>
<useRuntimeException>true</useRuntimeException>
<serializationLibrary>gson</serializationLibrary>
<openApiNullable>false</openApiNullable>
<useJakartaEe>true</useJakartaEe>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<tags>
<tag>
<name>http.response.details</name>
<placement>a</placement>
<head>HTTP Response Details:</head>
</tag>
</tags>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-release-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central.publishing.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>