tosan-httpserver-spring-boot-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.tosan.server.http</groupId>
<artifactId>tosan-httpserver-spring-boot-root</artifactId>
<version>2.2.4</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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.3</version>
<relativePath />
</parent>
<groupId>com.tosan.server.http</groupId>
<artifactId>tosan-httpserver-spring-boot-root</artifactId>
<packaging>pom</packaging>
<version>2.2.4</version>
<name>tosan-httpserver-spring-boot-starter</name>
<description>
This project provides a Spring-Boot Starter that facilitate common requirements of a rest server like
filling MDC parameters, logging http request and response with ability to mask sensitive data in header and
body, and simple metrics logging.
</description>
<url>https://github.com/Tosan/tosan-httpserver-spring-boot-starter</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Mina Khoshnevisan</name>
<email>m.khoshnevisan@tosan.com</email>
<organization>tosan</organization>
<organizationUrl>https://www.tosan.com</organizationUrl>
</developer>
</developers>
<modules>
<module>tosan-httpserver-spring-boot-starter</module>
<module>tosan-httpserver-spring-boot-sample</module>
</modules>
<scm>
<connection>scm:git:https://github.com/Tosan/tosan-httpserver-spring-boot-starter.git</connection>
<developerConnection>scm:git:https://github.com/Tosan/tosan-httpserver-spring-boot-starter.git</developerConnection>
<url>https://github.com/Tosan/tosan-httpserver-spring-boot-starter</url>
<tag>v2.2.4</tag>
</scm>
<properties>
<java.version>17</java.version>
<tosan.mask.version>2.3.0</tosan.mask.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.tosan.tools</groupId>
<artifactId>tosan-mask-spring-boot-starter</artifactId>
<version>${tosan.mask.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useFile>false</useFile>
<testFailureIgnore>false</testFailureIgnore>
<skipTests>false</skipTests>
<includes>
<include>**/*UTest.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub</name>
<url>https://maven.pkg.github.com/Tosan/tosan-httpserver-spring-boot-starter</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>build</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</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.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>