1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/lodsve-lodsve-boot

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Это зеркальный репозиторий, синхронизируется ежедневно с исходного репозитория.
Клонировать/Скачать
pom.xml 18 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
sunhao-java Отправлено 10 месяцев назад 5ee3392
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.3</version>
<relativePath/>
</parent>
<groupId>com.lodsve.boot</groupId>
<artifactId>lodsve-boot-build</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<inceptionYear>2020</inceptionYear>
<name>lodsve boot build</name>
<description>Lodsve develop kits base on Spring-Boot and some opensource components!</description>
<url>https://github.com/lodsve/lodsve-boot</url>
<properties>
<revision>1.0.2-SNAPSHOT</revision>
<lodsve.boot.version>${revision}</lodsve.boot.version>
<!-- 基本属性 -->
<project.encoding>UTF-8</project.encoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
<!-- 所有的插件版本 -->
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
<maven.javadoc.plugin.version>3.6.3</maven.javadoc.plugin.version>
<nexus.staging.maven.plugin.version>1.6.5</nexus.staging.maven.plugin.version>
<flatten.maven.plugin.version>1.2.7</flatten.maven.plugin.version>
<maven.copyright.plugin.version>3.0</maven.copyright.plugin.version>
<lodsve.javatemplate.maven.plugins.version>1.0.3-SNAPSHOT</lodsve.javatemplate.maven.plugins.version>
<!-- 仓库地址配置 -->
<oss.snapshots.repository.url>https://oss.sonatype.org/content/repositories/snapshots/
</oss.snapshots.repository.url>
<oss.releases.repository.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/
</oss.releases.repository.url>
<github.repository.url>https://maven.pkg.github.com/lodsve/lodsve-boot</github.repository.url>
<!-- 自定义配置 -->
<main.user.dir>${basedir}</main.user.dir>
<manifest.built.name>Hulk Sun</manifest.built.name>
</properties>
<modules>
<module>lodsve-boot-project</module>
</modules>
<organization>
<name>lodsve</name>
<url>https://github.com/lodsve</url>
</organization>
<!-- license -->
<licenses>
<license>
<name>GNU General Public License version 3</name>
<url>https://opensource.org/licenses/GPL-3.0</url>
</license>
</licenses>
<!-- 开发者 -->
<developers>
<developer>
<id>sunhao</id>
<name>孙昊</name>
<email>sunhao.java@gmail.com</email>
<roles>
<role>creator</role>
<role>manager</role>
<role>developer</role>
<role>committer</role>
</roles>
</developer>
</developers>
<!-- issue -->
<issueManagement>
<system>Github Issue</system>
<url>https://github.com/lodsve/lodsve-boot/issues</url>
</issueManagement>
<!-- 代码库 -->
<scm>
<connection>scm:git:git@github.com:lodsve/lodsve-boot.git</connection>
<developerConnection>scm:git:git@github.com:lodsve/lodsve-boot.git</developerConnection>
<url>https://github.com/lodsve/lodsve-boot</url>
</scm>
<!-- 仓库 -->
<repositories>
<repository>
<id>default-center</id>
<name>default center</name>
<url>https://repo1.maven.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>maven-center-snapshot</id>
<name>Maven Center Snapshot</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<!-- copyright header -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${maven.copyright.plugin.version}</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<quiet>false</quiet>
<header>${main.user.dir}/tools/HEADER</header>
<excludes>
<exclude>.github/**</exclude>
<exclude>.mvn/**</exclude>
<exclude>git/**</exclude>
<exclude>.toos/*.xml</exclude>
<exclude>tools/HEADER</exclude>
<exclude>.editorconfig</exclude>
<exclude>.gitignore</exclude>
<exclude>LICENSE</exclude>
<exclude>mvnw</exclude>
<exclude>mvnw.cmd</exclude>
<exclude>*.md</exclude>
</excludes>
<strictCheck>true</strictCheck>
<mapping>
<java>SLASHSTAR_STYLE</java>
<factories>SCRIPT_STYLE</factories>
</mapping>
</configuration>
</plugin>
<plugin>
<groupId>com.lodsve.maven.plugins</groupId>
<artifactId>lodsve-javatemplate-maven-plugin</artifactId>
<version>${lodsve.javatemplate.maven.plugins.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-sources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
</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>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>jdk-11</id>
<activation>
<jdk>11</jdk>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.compilerVersion>11</maven.compiler.compilerVersion>
</properties>
</profile>
<profile>
<id>release-oss</id>
<build>
<plugins>
<!-- GPG,发布maven中央仓库用 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- 这个configuration必须配置,用于gpg非交互式密码输入 -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<!-- 生成javadoc的插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<charset>${project.build.sourceEncoding}</charset>
<encoding>${project.build.sourceEncoding}</encoding>
<docencoding>${project.build.sourceEncoding}</docencoding>
<doctitle>Lodsve Boot ApiDoc</doctitle>
<windowtitle>Lodsve Boot ApiDoc</windowtitle>
<locale>zh_CN</locale>
</configuration>
</plugin>
<!-- 在maven仓库中自动close和release的插件 -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus.staging.maven.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>oss-releases</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<!-- 发布仓库 -->
<distributionManagement>
<snapshotRepository>
<id>oss-snapshots</id>
<name>oss SNAPSHOTS</name>
<url>${oss.snapshots.repository.url}</url>
</snapshotRepository>
<repository>
<id>oss-releases</id>
<name>oss releases</name>
<url>${oss.releases.repository.url}</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release-oss-snapshot</id>
<build>
<plugins>
<!-- GPG,发布maven中央仓库用 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- 这个configuration必须配置,用于gpg非交互式密码输入 -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<!-- 生成javadoc的插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<charset>${project.build.sourceEncoding}</charset>
<encoding>${project.build.sourceEncoding}</encoding>
<docencoding>${project.build.sourceEncoding}</docencoding>
<doctitle>Lodsve Boot JavaDocs</doctitle>
<windowtitle>Lodsve Boot JavaDocs</windowtitle>
<locale>zh_CN</locale>
</configuration>
</plugin>
</plugins>
</build>
<!-- 发布仓库 -->
<distributionManagement>
<snapshotRepository>
<id>oss-snapshots</id>
<name>oss SNAPSHOTS</name>
<url>${oss.snapshots.repository.url}</url>
</snapshotRepository>
<repository>
<id>oss-releases</id>
<name>oss releases</name>
<url>${oss.releases.repository.url}</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release-lodsve</id>
<!-- 第三方发布仓库 -->
<distributionManagement>
<snapshotRepository>
<id>lodsve-snapshots</id>
<name>lodsve SNAPSHOTS</name>
<url>${lodsve.snapshots.repository.url}</url>
</snapshotRepository>
<repository>
<id>lodsve-releases</id>
<name>lodsve releases</name>
<url>${lodsve.releases.repository.url}</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!-- 生成javadoc的插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<charset>${project.build.sourceEncoding}</charset>
<encoding>${project.build.sourceEncoding}</encoding>
<docencoding>${project.build.sourceEncoding}</docencoding>
<doctitle>Lodsve Boot JavaDocs</doctitle>
<windowtitle>Lodsve Boot JavaDocs</windowtitle>
<locale>zh_CN</locale>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

Комментарий ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/lodsve-lodsve-boot.git
git@gitlife.ru:oschina-mirror/lodsve-lodsve-boot.git
oschina-mirror
lodsve-lodsve-boot
lodsve-lodsve-boot
1.0.2-20240527-SNAPSHOT