relaxed-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.lovecyy</groupId> <artifactId>relaxed-parent</artifactId> <version>1.6.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cn.lovecyy</groupId> <artifactId>relaxed-dependencies</artifactId> <version>1.6.0</version> <relativePath>../relaxed-dependencies/pom.xml</relativePath> </parent> <groupId>cn.lovecyy</groupId> <artifactId>relaxed-parent</artifactId> <version>1.6.0</version> <packaging>pom</packaging> <name>relaxed-parent</name> <description>项目基本脚手架</description> <url>https://github.com/xiaoashuo/relaxed</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>yakir</name> <email>yakir@foxmail.com</email> </developer> </developers> <distributionManagement> <repository> <id>release-id</id> <url>http://49.234.128.78/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>release-snapshot-id</id> <url>http://49.234.128.78/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <mapstruct-processor.version>1.4.2.Final</mapstruct-processor.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <excludes> <exclude>static/report/**</exclude> <exclude>**/*.woff</exclude> <exclude>**/*.woff2</exclude> <exclude>**/*.ttf</exclude> <exclude>**/*.ico</exclude> </excludes> </resource> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> <includes> <include>static/report/**</include> <include>**/*.woff</include> <include>**/*.woff2</include> <include>**/*.ttf</include> <include>**/*.ico</include> </includes> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>build-info</goal> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>io.spring.javaformat</groupId> <artifactId>spring-javaformat-maven-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>validate</goal> </goals> <inherited>true</inherited> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <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> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> <path> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct-processor.version}</version> </path> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring-boot.version}</version> </path> </annotationProcessorPaths> <encoding>${project.build.sourceEncoding}</encoding> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <profiles.active>dev</profiles.active> </properties> </profile> <profile> <id>test</id> <properties> <profiles.active>test</profiles.active> </properties> </profile> <profile> <id>prod</id> <properties> <profiles.active>prod</profiles.active> </properties> </profile> <profile> <id>ossrh</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>D:\idea\source\person\relaxed\relaxed-parent\target/apidocs</outputDirectory> <additionalJOption>-J-Dfile.encoding=UTF-8</additionalJOption> <doclint>none</doclint> <tags> <tag> <name>date</name> </tag> </tags> </configuration> </execution> </executions> <configuration> <outputDirectory>D:\idea\source\person\relaxed\relaxed-parent\target/apidocs</outputDirectory> <additionalJOption>-J-Dfile.encoding=UTF-8</additionalJOption> <doclint>none</doclint> <tags> <tag> <name>date</name> </tag> </tags> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <goals>deploy</goals> <releaseProfiles>release</releaseProfiles> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.3</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <executions> <execution> <id>injected-central-publishing</id> <phase>deploy</phase> <goals> <goal>publish</goal> </goals> <configuration> <publishingServerId>ossrh</publishingServerId> </configuration> </execution> </executions> <configuration> <publishingServerId>ossrh</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>