copier
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.tanyaofei</groupId> <artifactId>copier</artifactId> <version>0.1.6</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.tanyaofei</groupId> <artifactId>copier</artifactId> <name>copier</name> <version>0.1.6</version> <description>A bean copier base on Java bytecode supports JDK14 record.</description> <url>https://github.com/tanyaofei/copier</url> <developers> <developer> <id>tanyaofei</id> <name>tanyaofei</name> <email>tan.yaofei@outlook.com</email> <roles> <role>Maintainer</role> </roles> <timezone>+8</timezone> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>https://github.com/tanyaofei/copier.git</connection> <url>https://github.com/tanyaofei/copier</url> </scm> <profiles> <profile> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <artifactSet> <includes> <include>org.ow2.asm:asm</include> <include>cglib:cglib</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.objectweb.asm</pattern> <shadedPattern>io.github.tanyaofei.copier.asm</shadedPattern> </relocation> <relocation> <pattern>net.sf.cglib</pattern> <shadedPattern>io.github.tanyaofei.copier.cglib</shadedPattern> </relocation> </relocations> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>sonatype</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype</id> <url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <dependencies> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>2.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.17.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.38</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.12.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>6.2.7</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>spring-jcl</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>6.2.7</version> <scope>test</scope> </dependency> </dependencies> <properties> <maven.compiler.target>17</maven.compiler.target> <jakarta.version>2.1.1</jakarta.version> <maven.compiler.source>17</maven.compiler.source> <cglib.version>3.3.0</cglib.version> <asm.version>9.7.1</asm.version> <maven-shade-plugin.version>3.3.0</maven-shade-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <commons-lang3.version>3.17.0</commons-lang3.version> </properties> </project>