toasterfx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gitee.pomo</groupId> <artifactId>toasterfx</artifactId> <version>1.0.2</version> </dependency>
<?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>com.gitee.pomo</groupId> <artifactId>toasterfx</artifactId> <version>1.0.2</version> <packaging>jar</packaging> <!--region 项目描述--> <name>ToasterFX</name> <url>https://gitee.com/pomo/toasterfx</url> <description>A message prompt library for JavaFX.</description> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://gitee.com/pomo/toasterfx</url> <connection>scm:git:git@gitee.com:pomo/toasterfx.git</connection> <developerConnection>scm:git:git@gitee.com:pomo/toasterfx.git</developerConnection> </scm> <developers> <developer> <name>Mr.Po</name> <email>ldd_live@foxmail.com</email> </developer> </developers> <!--endregion--> <properties> <jdk.version>8</jdk.version> <project.encoding>UTF-8</project.encoding> <maven.compiler.source>${jdk.version}</maven.compiler.source> <maven.compiler.target>${jdk.version}</maven.compiler.target> <project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding> <project.build.resourceEncoding>${project.encoding}</project.build.resourceEncoding> <project.reporting.outputEncoding>${project.encoding}</project.reporting.outputEncoding> </properties> <dependencies> <!--若需要支持JPMS、JLink,请使用2.0+--> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-core</artifactId> <version>4.0.16-alpha</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-junit</artifactId> <version>4.0.15-alpha</version> <scope>test</scope> </dependency> </dependencies> <!--远程仓库--> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshot</id> <name>Nexus-Snapshot-Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-release</id> <name>Nexus-Release-Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!--region 源文件添加许可证--> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.0.rc2</version> <configuration> <licenseSets> <licenseSet> <header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header> <excludes> <exclude>**/README</exclude> <exclude>**/pom.xml</exclude> <exclude>**/.lgtm.yml</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> </excludes> </licenseSet> </licenseSets> <properties> <owner>Mr.Po</owner> <email>ldd_live@foxmail.com</email> </properties> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <!--endregion--> <!--region 添加module-info--> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <version>1.0.0.Beta2</version> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <jvmVersion>9</jvmVersion> <module> <moduleInfoFile> ${basedir}/src/main/java9/module-info.java </moduleInfoFile> </module> <overwriteExistingFiles>true</overwriteExistingFiles> </configuration> </execution> </executions> </plugin> <!--endregion--> <!--region 源码打包--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!--endregion--> <!--region JavaDoc--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <!-- jdk1.8要加上,1.7要去掉,否则会报错 --> <additionalJOptions> <additionalJOption>-Xdoclint:none</additionalJOption> </additionalJOptions> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--endregion--> <!--region 签名--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!--endregion--> <!--region 执行jacoco,得到测试样例覆盖率--> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.6</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <!--将此执行加入到测试阶段--> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> <!--打包时,要求覆盖率高于70%--> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>INSTRUCTION</counter> <value>COVEREDRATIO</value> <minimum>0.70</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> <!--endregion--> </plugins> </build> </project>