umbrella-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.dataspray.umbrella.integration</groupId>
<artifactId>umbrella-java</artifactId>
<version>0.0.4</version>
</dependency><!--
~ Copyright 2025 Matus Faro
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
~ in the Software without restriction, including without limitation the rights
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
~ copies of the Software, and to permit persons to whom the Software is
~ furnished to do so, subject to the following conditions:
~
~ The above copyright notice and this permission notice shall be included in all
~ copies or substantial portions of the Software.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
~ SOFTWARE.
-->
<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>io.dataspray.umbrella.integration</groupId>
<artifactId>umbrella-java</artifactId>
<version>0.0.4</version>
<packaging>jar</packaging>
<name>Umbrella Integration Java Client</name>
<description>Integrate DataSpray with Java</description>
<url>https://dataspray.io</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Matus Faro</name>
<email>matus@dataspray.io</email>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<scm>
<url>git@github.com:datasprayio/umbrella.git</url>
<connection>scm:git:git@github.com:datasprayio/umbrella.git</connection>
<developerConnection>scm:git:git@github.com:datasprayio/umbrella.git</developerConnection>
</scm>
<properties>
<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<!-- Matches OpenApi generated pom.xml -->
<okhttp.version>4.12.0</okhttp.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<!-- Matches OpenApi generated pom.xml -->
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<!-- Matches OpenApi generated pom.xml -->
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<!-- Matches OpenApi generated pom.xml -->
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<!-- Matches OpenApi generated pom.xml -->
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.12.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<version>${okhttp.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.dataspray.umbrella</groupId>
<artifactId>umbrella-api</artifactId>
<classifier>openapi</classifier>
<version>0.0.2</version>
<type>tar.gz</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/unpacked-resources/openapi
</outputDirectory>
<includes>*</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.9.0</version>
<executions>
<execution>
<id>generate-client</id>
<goals>
<goal>generate</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<!-- Disables spec validation, for "existingJavaType" -->
<skipValidateSpec>true</skipValidateSpec>
<inputSpec>${project.build.directory}/unpacked-resources/openapi/umbrella-api.yaml
</inputSpec>
<generatorName>java</generatorName>
<ignoreFileOverride>
${project.basedir}/src/main/openapi/client/.openapi-generator-ignore
</ignoreFileOverride>
<templateDirectory>src/main/openapi/client</templateDirectory>
<typeMappings>OffsetDateTime=Instant</typeMappings>
<importMappings>java.time.OffsetDateTime=java.time.Instant</importMappings>
<additionalProperties>
<additionalProperty>modelPackage=io.dataspray.umbrella.client.model</additionalProperty>
<additionalProperty>apiPackage=io.dataspray.umbrella.client</additionalProperty>
<additionalProperty>invokerPackage=io.dataspray.umbrella.client</additionalProperty>
<additionalProperty>groupId=io.dataspray.umbrella</additionalProperty>
<additionalProperty>artifactId=client</additionalProperty>
<additionalProperty>dateLibrary=java8</additionalProperty>
<additionalProperty>disableHtmlEscaping=true</additionalProperty>
<additionalProperty>hideGenerationTimestamp=true</additionalProperty>
<additionalProperty>useBeanValidation=true</additionalProperty>
<additionalProperty>serializationLibrary=gson</additionalProperty>
<additionalProperty>generateConstructorWithAllArgs=true</additionalProperty>
<additionalProperty>removeEnumValuePrefix=false</additionalProperty>
<additionalProperty>sourceFolder=target/main/java</additionalProperty>
</additionalProperties>
<output>${project.build.directory}/generated-sources/client</output>
<configOptions>
<useJakartaEe>true</useJakartaEe>
<sourceFolder>src/main/java</sourceFolder>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
<!-- Publishing START -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- Disable -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.honton.chas</groupId>
<artifactId>exists-maven-plugin</artifactId>
<version>0.14.0</version>
<executions>
<execution>
<id>check-if-exists</id>
<goals>
<goal>remote</goal>
</goals>
</execution>
</executions>
<configuration>
<property>skipDeploy</property>
<repository>https://s01.oss.sonatype.org/service/local/repositories/releases/content/
</repository>
<requireGoal>deploy</requireGoal>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</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>3.6.3</version>
<configuration>
<source>${maven.compiler.source}</source>
<doclint>none</doclint>
</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>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${skipDeploy}</skip>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<executions>
<execution>
<id>nexus-stage</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Defferring which effectively disables -->
<skipNexusStagingDeployMojo>${skipDeploy}</skipNexusStagingDeployMojo>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- Publishing END -->
</plugins>
</build>
</project>