spring-boot-starter-httpclient-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.springboot-addons</groupId> <artifactId>spring-boot-starter-httpclient-parent</artifactId> <version>2.0.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.2</version> <relativePath /> <!-- lookup parent from repository --> </parent> <groupId>io.github.springboot-addons</groupId> <artifactId>spring-boot-starter-httpclient-parent</artifactId> <version>2.0.0</version> <packaging>pom</packaging> <name>spring-boot-starter-httpclient-parent</name> <description>Spring Boot AutoConfiguration for Apache HttpClient</description> <url>https://github.com/springboot-addons/spring-boot-httpclient</url> <organization> <url>https://github.com/springboot-addons</url> <name>spring-boot-httpclient</name> </organization> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Stéphane Routhiau</name> <email>stephane.routhiau@gmail.com</email> <organization>Capsi Informatique</organization> <organizationUrl>https://www.capsi-informatique.fr/</organizationUrl> <timezone>UTC+01:00</timezone> </developer> </developers> <issueManagement> <system>Github</system> <url>https://github.com/springboot-addons/spring-boot-httpclient/issues</url> </issueManagement> <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> <connection>scm:git:git://github.com/springboot-addons/spring-boot-httpclient.git</connection> <developerConnection>scm:git:git@github.com:springboot-addons/spring-boot-httpclient.git</developerConnection> <url>https://github.com/springboot-addons/spring-boot-httpclient</url> <tag>spring-boot-starter-httpclient-parent-2.0.0</tag> </scm> <properties> <java.version>17</java.version> <version.maven-gpg-plugin>1.6</version.maven-gpg-plugin> </properties> <modules> <module>spring-boot-starter-httpclient</module> <module>spring-boot-starter-httpclient-actuator</module> <module>spring-boot-starter-httpclient-resilience4j</module> <module>spring-boot-starter-httpclient-security-cas</module> <module>spring-boot-starter-httpclient-security-ntlm</module> <module>spring-boot-starter-httpclient-web</module> <module>spring-boot-starter-httpclient-all</module> <module>spring-boot-starter-httpclient-integration-tests</module> </modules> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <sourceDirectory>src/main/java</sourceDirectory> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>8</source> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.5</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.springboot-addons</groupId> <artifactId>spring-boot-starter-httpclient</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <profiles> <!-- GPG Signature on release --> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${version.maven-gpg-plugin}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>