244 lines
9.4 KiB
XML
244 lines
9.4 KiB
XML
<?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>
|
|
|
|
<groupId>io.github.weihubeats</groupId>
|
|
<artifactId>spring-boot-nebula</artifactId>
|
|
<version>${revision}</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>spring-boot-nebula</name>
|
|
<description>spring-boot-common</description>
|
|
|
|
<modules>
|
|
<module>spring-boot-nebula-web</module>
|
|
<module>spring-boot-nebula-dependencies</module>
|
|
<module>spring-boot-nebula-common</module>
|
|
<module>spring-boot-nebula-samples</module>
|
|
<module>spring-boot-nebula-aggregate</module>
|
|
<module>spring-boot-nebula-mybatis</module>
|
|
<module>spring-boot-nebula-aop-base</module>
|
|
<module>spring-boot-nebula-distribute-lock</module>
|
|
<module>spring-boot-nebula-web-common</module>
|
|
<module>spring-boot-nebula-all</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<revision>0.0.01</revision>
|
|
<flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version>
|
|
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.github.weihubeats</groupId>
|
|
<artifactId>spring-boot-nebula-dependencies</artifactId>
|
|
<version>${revision}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<inherited>true</inherited>
|
|
<configuration>
|
|
<source>${maven.compiler.source}</source>
|
|
<target>${maven.compiler.target}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.18.1</version>
|
|
<inherited>true</inherited>
|
|
<configuration>
|
|
<forkCount>1</forkCount>
|
|
<reuseForks>false</reuseForks>
|
|
<!-- <skipTests>false</skipTests>-->
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<attach>true</attach>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.7.1</version>
|
|
</plugin>
|
|
<!-- Javadoc -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<configuration>
|
|
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
|
|
<additionalJOptions>
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
|
</additionalJOptions>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- Gpg Signature -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>${maven-gpg-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
<phase>verify</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<version>${flatten-maven-plugin.version}</version>
|
|
<configuration>
|
|
<updatePomFile>true</updatePomFile>
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>flatten</id>
|
|
<goals>
|
|
<goal>flatten</goal>
|
|
</goals>
|
|
<phase>process-resources</phase>
|
|
</execution>
|
|
<execution>
|
|
<id>flatten.clean</id>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
<phase>clean</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
|
<version>${spotless-maven-plugin.version}</version>
|
|
<configuration>
|
|
<java>
|
|
<eclipse>
|
|
<file>${maven.multiModuleProjectDirectory}/dev-support/spotless_nebula_formatter.xml</file>
|
|
</eclipse>
|
|
<licenseHeader>
|
|
<file>${maven.multiModuleProjectDirectory}/dev-support/license-header</file>
|
|
</licenseHeader>
|
|
</java>
|
|
<pom>
|
|
<sortPom>
|
|
<encoding>UTF-8</encoding>
|
|
<nrOfIndentSpace>4</nrOfIndentSpace>
|
|
<keepBlankLines>true</keepBlankLines>
|
|
<indentBlankLines>false</indentBlankLines>
|
|
<indentSchemaLocation>true</indentSchemaLocation>
|
|
<spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
|
|
<sortModules>false</sortModules>
|
|
<sortExecutions>false</sortExecutions>
|
|
<predefinedSortOrder>custom_1</predefinedSortOrder>
|
|
<expandEmptyElements>false</expandEmptyElements>
|
|
<sortProperties>false</sortProperties>
|
|
</sortPom>
|
|
</pom>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>apply</goal>
|
|
</goals>
|
|
<phase>compile</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
<url>https://github.com/weihubeats/spring-boot-nebula</url>
|
|
|
|
<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>weihubeats</name>
|
|
<email>weihu@apche.org</email>
|
|
<organization>https://weihubeats.blog.csdn.net/</organization>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git@github.com:weihubeats/spring-boot-nebula.git</connection>
|
|
<developerConnection>scm:git@github.com:weihubeats/spring-boot-nebula.git</developerConnection>
|
|
<url>git@github.com:weihubeats/spring-boot-nebula.git</url>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>Github Issue</system>
|
|
<url>https://github.com/weihubeats/spring-boot-nebula/issues</url>
|
|
</issueManagement>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>sonatype</id>
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>sonatype</id>
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
</project>
|