easy-translation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.kkkele</groupId> <artifactId>easy-translation</artifactId> <version>1.4.2-beta</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.kkkele</groupId> <artifactId>easy-translation</artifactId> <version>1.4.2-beta</version> <packaging>pom</packaging> <name>easy-translation</name> <description>轻量级的翻译插件</description> <url>https://gitee.com/cai-zhiyuDaKeLe/easy-translation</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>kkkele</id> <name>kkkele</name> <email>1622011654@qq.com</email> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <modules> <module>easy-translation-annotation</module> <module>easy-translation-core</module> <module>easy-translation-extension</module> <module>easy-translation-bom</module> <module>easy-translation-demo</module> <module>easy-translation-starter</module> </modules> <scm> <connection>https://gitee.com/cai-zhiyuDaKeLe/easy-translation.git</connection> <developerConnection>https://gitee.com/cai-zhiyuDaKeLe</developerConnection> <url>https://gitee.com/cai-zhiyuDaKeLe/easy-translation</url> </scm> <distributionManagement> <repository> <id>release</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>release</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version> <spring5.version>5.3.31</spring5.version> <maven.compiler.source>8</maven.compiler.source> <spring6.version>6.1.4</spring6.version> <hutool.version>5.8.18</hutool.version> <reflections.version>0.9.11</reflections.version> <flatten-maven-plugin.version>1.3.0</flatten-maven-plugin.version> <spring-boot.version>2.7.16</spring-boot.version> <revision>1.4.2-beta</revision> <lombok.version>1.18.30</lombok.version> <common.lang3.version>3.13.0</common.lang3.version> <maven.compiler.target>8</maven.compiler.target> <spring-boot3.version>3.0.6</spring-boot3.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <aspectj.version>1.9.19</aspectj.version> <maven-war-plugin.version>3.2.2</maven-war-plugin.version> <javax-api.version>4.0.1</javax-api.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-bom</artifactId> <version>${hutool.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> <dependency> <groupId>io.github.kkkele</groupId> <artifactId>easy-translation-bom</artifactId> <version>1.4.2-beta</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${common.lang3.version}</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>${reflections.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>${aspectj.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${flatten-maven-plugin.version}</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <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> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <additionalJOptions> <additionalJOption>-Xdoclint:none</additionalJOption> </additionalJOptions> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>