jrock-build
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.codek-li.jrock</groupId> <artifactId>jrock-build</artifactId> <version>1.0.0</version> </dependency>
<?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>io.github.codek-li.jrock</groupId> <artifactId>jrock-build</artifactId> <version>${revision}</version> <packaging>pom</packaging> <name>jrock-framework</name> <url>https://github.com/codeK-li/java-boot</url> <description>A Java Framework</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <revision>1.0.0</revision> <!-- <revision>0.1.1.BUILD-SNAPSHOT</revision>--> <jacoco.maven.plugin.version>0.8.5</jacoco.maven.plugin.version> <maven.source.plugin.version>3.2.1</maven.source.plugin.version> <maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version> <maven.surefire.plugin.version>2.22.2</maven.surefire.plugin.version> </properties> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>https://github.com/codeK-li/java-boot</url> <connection>https://github.com/codeK-li/java-boot.git</connection> </scm> <developers> <developer> <id>codeK-li</id> <name>李伟超</name> <email>codek_mk@163.com</email> </developer> </developers> <modules> <module>java-project</module> <module>springboot-project</module> </modules> <build> <plugins> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-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>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- https://maven.apache.org/plugins/maven-compiler-plugin/index.html --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- https://maven.apache.org/plugins/maven-javadoc-plugin/ --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <encoding>UTF-8</encoding> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> </configuration> </plugin> <!--https://maven.apache.org/surefire/maven-surefire-plugin--> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> </plugin> <!--https://www.eclemma.org/jacoco/trunk/doc/maven.html--> <!--https://www.eclemma.org/jacoco/trunk/doc/check-mojo.html--> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.maven.plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> <configuration> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> <limits> <limit implementation="org.jacoco.report.check.Limit"> <counter>INSTRUCTION</counter> <value>COVEREDRATIO</value> <minimum>0.90</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> <configuration> <excludes> <exclude>**/generated/**/*</exclude> <exclude>**/external/**/*</exclude> <exclude>**/*Configuration.class</exclude> <exclude>**/*Properties.class</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>