cola-components-bom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-components-bom</artifactId> <version>5.0.0</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>com.alibaba.cola</groupId> <artifactId>cola-components-bom</artifactId> <version>5.0.0</version> <packaging>pom</packaging> <name>${project.artifactId}</name> <description>${project.artifactId}</description> <url>https://github.com/alibaba/COLA</url> <licenses> <license> <name>GNU Lesser General Public License v2.1</name> <url>https://github.com/alibaba/COLA/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/alibaba/COLA.git</connection> <developerConnection>scm:git:https://github.com/alibaba/COLA.git</developerConnection> <url>https://github.com/alibaba/COLA</url> </scm> <issueManagement> <url>https://github.com/alibaba/COLA/issues</url> <system>GitHub Issues</system> </issueManagement> <developers> <developer> <id>significantfrank</id> <name>Frank Zhang</name> <email>25216348(at)qq.com</email> <roles> <role>Developer</role> <role>Architect</role> </roles> <timezone>+8</timezone> <url>https://github.com/significantfrank</url> </developer> <developer> <id>oldratlee</id> <name>Jerry Lee</name> <email>oldratlee(at)gmail.com</email> <roles> <role>Developer</role> <role>CI/SCM Engineer</role> </roles> <timezone>+8</timezone> <url>https://github.com/oldratlee</url> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-dto</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-exception</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-statemachine</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-domain-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-extension-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-catchlog-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba.cola</groupId> <artifactId>cola-component-test-container</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>gen-sign</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</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> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>