vertx-web-object-storage-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.emadalblueshi</groupId> <artifactId>vertx-web-object-storage-client</artifactId> <version>0.0.1-DEV</version> </dependency>
<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>io.github.emadalblueshi</groupId> <artifactId>vertx-web-object-storage-client</artifactId> <version>0.0.1-DEV</version> <packaging>jar</packaging> <name>Vert.x Web Object Storage Client</name> <description>Object storage web client for Vert.x applications.</description> <url>https://github.com/EmadAlblueshi/vertx-web-object-storage-client</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <central-publishing-maven-plugin.version>0.4.0</central-publishing-maven-plugin.version> <maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version> <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <maven-failsafe-plugin.version>3.2.5</maven-failsafe-plugin.version> <maven-jar-plugin.version>3.4.1</maven-jar-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.7.0</maven-javadoc-plugin.version> <maven-clean-plugin.version>3.3.2</maven-clean-plugin.version> <maven-project-info-reports-plugin.version>3.5.0</maven-project-info-reports-plugin.version> <maven-processor-plugin.version>5.1</maven-processor-plugin.version> <build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version> <asciidoctor-maven-plugin>2.2.6</asciidoctor-maven-plugin> <logback-classic.version>1.5.6</logback-classic.version> <junit-jupiter.version>5.10.2</junit-jupiter.version> <testcontainers.version>1.19.8</testcontainers.version> <vertx.version>4.5.8</vertx.version> <generated.dir>${project.basedir}/src/main/generated</generated.dir> <asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir> <jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-dependencies</artifactId> <version>${vertx.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web-client</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-docgen</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback-classic.version}</version> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.bsc.maven</groupId> <artifactId>maven-processor-plugin</artifactId> <version>${maven-processor-plugin.version}</version> <executions> <execution> <id>generate-sources</id> <goals> <goal>process</goal> </goals> <phase>generate-sources</phase> <configuration> <systemProperties> <java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n </java.util.logging.SimpleFormatter.format> </systemProperties> <processors> <processor>io.vertx.codegen.CodeGenProcessor</processor> <processor>io.vertx.docgen.JavaDocGenProcessor</processor> </processors> <optionMap> <codegen.output>${project.basedir}/src/main</codegen.output> <!-- Data object converters are placed in src/main/generated --> <codegen.output.data_object_converters>generated</codegen.output.data_object_converters> <docgen.source>${asciidoc.dir}/*.adoc</docgen.source> <docgen.output>${project.build.directory}/asciidoc/java</docgen.output> <maven.groupId>${project.groupId}</maven.groupId> <maven.artifactId>${project.artifactId}</maven.artifactId> <maven.version>${project.version}</maven.version> </optionMap> <defaultOutputDirectory>${project.build.directory}/generated-sources/codegen</defaultOutputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> <executions> <execution> <id>default-clean</id> <configuration> <filesets> <fileset> <directory>${generated.dir}</directory> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <excludes> <exclude>examples/**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <configuration> <excludes> <exclude>examples/**</exclude> </excludes> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${asciidoctor-maven-plugin}</version> <configuration> <sourceDirectory>${asciidoc.dir}</sourceDirectory> <outputDirectory>${project.build.directory}/docs/${project.artifactId}</outputDirectory> <preserveDirectories>true</preserveDirectories> <relativeBaseDir>true</relativeBaseDir> <backend>html</backend> <doctype>book</doctype> </configuration> <executions> <execution> <id>gen-asciidoc</id> <goals> <goal>process-asciidoc</goal> </goals> <phase>site</phase> <configuration> <sourceDirectory>${project.build.directory}/asciidoc</sourceDirectory> <resources> <resource> <directory>${asciidoc.dir}</directory> <excludes> <exclude>**/*.ad</exclude> <exclude>**/*.adoc</exclude> </excludes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <excludePackageNames>examples</excludePackageNames> <sourceFileExcludes> <sourceFileExclude>**/package-info.java</sourceFileExclude> <sourceFileExclude>**/impl/**</sourceFileExclude> </sourceFileExcludes> <sourceFileIncludes> <sourceFileInclude>io/github/emadalblueshi/**/*.java</sourceFileInclude> </sourceFileIncludes> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <id>gen-javadoc</id> <phase>site</phase> <goals> <goal>javadoc</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build-helper-maven-plugin.version}</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${generated.dir}</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> <reportSets> <reportSet> <reports> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</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> </plugins> </build> </profile> </profiles> <scm> <connection>scm:git:git@github.com:EmadAlblueshi/vertx-web-object-storage-client.git</connection> <developerConnection>scm:git:git@github.com:EmadAlblueshi/vertx-web-object-storage-client.git</developerConnection> <url>https://github.com/EmadAlblueshi/vertx-web-object-storage-client</url> <tag>HEAD</tag> </scm> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Emad Alblueshi</name> <email>emad.albloushi@gmail.com</email> </developer> </developers> </project>