141 lines
5.4 KiB
XML
141 lines
5.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>com.kodgemisi</groupId>
|
|
<artifactId>soap-logger-spring-boot-starter</artifactId>
|
|
<version>1.0.0</version>
|
|
|
|
<name>Soap logger Spring Boot starter</name>
|
|
<url>http://www.example.com</url>
|
|
|
|
<scm>
|
|
<url>https://github.com/kodgemisi/soap-logger-spring-boot-starter</url>
|
|
</scm>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.6.RELEASE</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<maven-source-plugin.version>3.1.0</maven-source-plugin.version>
|
|
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
|
|
<maven-jar-plugin.version>3.1.0</maven-jar-plugin.version>
|
|
|
|
<asciidoctor-maven-plugin.version>1.5.8</asciidoctor-maven-plugin.version>
|
|
|
|
<!-- https://github.com/asciidoctor/asciidoctor-maven-plugin#add-version-and-build-date-to-the-header -->
|
|
<maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>${maven-javadoc-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>${maven-source-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven-jar-plugin.version}</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.asciidoctor</groupId>
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
<version>${asciidoctor-maven-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>output-html</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>process-asciidoc</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<!-- We add `images/` prefix manually in `readme.adoc` in order to show images on
|
|
Github's project page where readme is parsed by Github and {imagesdir} is not available. -->
|
|
<imagesDir>./</imagesDir>
|
|
<backend>html5</backend>
|
|
<sourceDirectory>${basedir}</sourceDirectory>
|
|
<sourceDocumentName>README.adoc</sourceDocumentName>
|
|
<outputDirectory>${basedir}/docs</outputDirectory>
|
|
<outputFile>index.html</outputFile>
|
|
<resources>
|
|
<resource>
|
|
<directory>images</directory>
|
|
<targetPath>images</targetPath>
|
|
</resource>
|
|
</resources>
|
|
|
|
<attributes>
|
|
<revnumber>${project.version}</revnumber>
|
|
<scmurl>${project.scm.url}</scmurl>
|
|
<blogurl>${project.organization.url}</blogurl>
|
|
</attributes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|