easytrans-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.davidricardo1026</groupId>
<artifactId>easytrans-parent</artifactId>
<version>2.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 https://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>3.2.5</version>
<relativePath/>
</parent>
<groupId>io.github.davidricardo1026</groupId>
<artifactId>easytrans-parent</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<name>easytrans-parent</name>
<description>EasyTrans: High-performance, zero-intrusion auto-translation tool based on MapStruct and APT
</description>
<url>https://github.com/davidricardo1026/easytrans</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>davidricardo1026</name>
<email>davidricardo1026@gmail.com</email>
<organization>io.github.davidricardo1026</organization>
<organizationUrl>https://github.com/davidricardo1026</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/davidricardo1026/easytrans.git</connection>
<developerConnection>scm:git:git@github.com:davidricardo1026/easytrans.git</developerConnection>
<url>https://github.com/davidricardo1026/easytrans</url>
</scm>
<modules>
<module>easytrans-core</module>
<module>easytrans-processor</module>
<module>easytrans-spring-boot-starter</module>
<module>easytrans-spring-boot2-starter</module>
<module>easytrans-demo</module>
</modules>
<properties>
<java.version>17</java.version>
<mybatis-plus.version>3.5.10.1</mybatis-plus.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<lombok.version>1.18.30</lombok.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source Plugin -->
<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>
<!-- Javadoc Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
<!-- GPG Signed Components -->
<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>
<!-- Modern Central Portal Publishing Plugin -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>