tr-common-bom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-bom</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.tyran8x</groupId> <artifactId>tr-common-bom</artifactId> <version>${revision}</version> <packaging>pom</packaging> <name>tr-common-bom</name> <url>https://github.com/tyran8x/tr-pro-app</url> <description>Bill of Materials (BOM) for TR-Common libraries.</description> <properties> <revision>1.0.0</revision> <maven.deploy.skip>false</maven.deploy.skip> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-core</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-doc</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-excel</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-idempotent</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-job</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-log</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-mail</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-mybatis</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-oss</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-ratelimiter</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-redis</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-satoken</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-security</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-sms</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-social</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-web</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-translation</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-sensitive</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-json</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-encrypt</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-tenant</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>io.github.tyran8x</groupId> <artifactId>tr-common-websocket</artifactId> <version>${revision}</version> </dependency> </dependencies> </dependencyManagement> <!-- THÔNG TIN BẮT BUỘC CHO MAVEN CENTRAL --> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>tyran8x</name> <email>tyran8x@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/tyran8x/tr-pro-app.git</connection> <developerConnection>scm:git:ssh://github.com:tyran8x/tr-pro-app.git</developerConnection> <url>https://github.com/tyran8x/tr-pro-app/tree/main</url> </scm> <!-- CHUYỂN TOÀN BỘ PLUGIN DEPLOY VÀO ĐÂY --> <build> <pluginManagement> <plugins> <!-- Vô hiệu hóa maven-deploy-plugin mặc định --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> <!-- Sử dụng phiên bản rõ ràng --> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <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> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-javadoc-plugin</artifactId>--> <!-- <version>3.11.2</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>attach-javadocs</id>--> <!-- <goals>--> <!-- <goal>jar</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- <configuration>--> <!-- <failOnError>false</failOnError>--> <!-- </configuration>--> <!-- </plugin>--> <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> </profiles> </project>