test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.rosestack</groupId> <artifactId>test</artifactId> <version>0.0.7</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> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.18</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>io.github.rosestack</groupId> <artifactId>test</artifactId> <version>0.0.7</version> <name>test</name> <description>Github Action Templates</description> <url>https://rosestack.github.io/.github</url> <inceptionYear>2025</inceptionYear> <organization> <name>RoseStack</name> <url>https://github.com/rosestack</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>chensoul</name> <email>ichensoul@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/rosestack/.github</connection> <developerConnection>scm:git:https://github.com/rosestack/.github</developerConnection> <tag>HEAD</tag> <url>https://github.com/rosestack/.github</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/rosestack/.github/issues</url> </issueManagement> <ciManagement> <system>github</system> <url>https://github.com/rosestack/.github/actions</url> </ciManagement> <distributionManagement> <snapshotRepository> <id>central</id> <name>central-snapshot</name> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> <site> <id>github</id> <url>https://rosestack.github.io/.github</url> </site> </distributionManagement> <properties> <java.version>8</java.version> <maven.min.version>3.6.3</maven.min.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!--reproducible build--> <project.build.outputTimestamp>2025-06-19T03:55:29Z</project.build.outputTimestamp> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.organization>rosestack</sonar.organization> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/jacoco-results/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> <sonar.language>java</sonar.language> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>build-info</goal> </goals> </execution> </executions> </plugin> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-artifact-plugin</artifactId>--> <!-- <version>3.5.1</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <goals>--> <!-- <goal>buildinfo</goal>--> <!-- </goals>--> <!-- <phase>verify</phase>--> <!-- <configuration>--> <!-- <!–suppress UnresolvedMavenProperty –>--> <!-- <outputTimestamp>${git.commit.time}</outputTimestamp>--> <!-- <reproducible>true</reproducible>--> <!-- </configuration>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <preparationGoals>clean verify</preparationGoals> <preparationProfiles>!tests</preparationProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> <arguments>-Dmaven.javadoc.skip=true -DskipTests -DskipITs</arguments> <tagNameFormat>v@{project.version}</tagNameFormat> <scmCommentPrefix>[CI Skip]</scmCommentPrefix> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <configuration> <!-- jacoco does not support multi-release jars --> <excludes> <exclude>META-INF/**</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${project.basedir}/target/jacoco.exec</dataFile> <outputDirectory>${project.basedir}/target/jacoco-results/</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.21.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> <configuration> <includes> <include>**/*Tests.java</include> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/Abstract*.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <goals> <goal>sign</goal> </goals> <phase>verify</phase> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <deploymentName>${project.groupId}:${project.artifactId}:${project.version}</deploymentName> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>