cffu2-bom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.foldright</groupId> <artifactId>cffu2-bom</artifactId> <version>2.0.0-Alpha4</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> <!-- Maven BOM Template https://github.com/anliksim/maven-template-bom --> <groupId>io.foldright</groupId> <artifactId>cffu2-bom</artifactId> <version>2.0.0-Alpha4</version> <packaging>pom</packaging> <name>${project.artifactId}</name> <description>cffu bom</description> <url>https://github.com/foldright/cffu</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>Apache 2</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:git:git@github.com:foldright/cffu.git</connection> <developerConnection>scm:git:git@github.com:foldright/cffu.git</developerConnection> <url>https://github.com/foldright/cffu</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/foldright/cffu/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/foldright/cffu/actions</url> </ciManagement> <organization> <name>FoldRight</name> <url>https://foldright.io</url> </organization> <developers> <developer> <name>Jerry Lee</name> <id>oldratlee</id> <email>oldratlee(AT)gmail(DOT)com</email> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> <url>https://github.com/oldratlee</url> <organization>FoldRight</organization> <organizationUrl>https://foldright.io</organizationUrl> </developer> </developers> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>${maven.compiler.source}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.deploy.skip>false</maven.deploy.skip> <jacoco.skip>true</jacoco.skip> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.foldright</groupId> <artifactId>cffu2</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.foldright</groupId> <artifactId>cffu2-ttl-executor-wrapper</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.4</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>gen-sign</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-settings</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <!-- https://central.sonatype.org/publish/publish-portal-maven/#publishing --> <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> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>