raiden
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.fishlikewater</groupId> <artifactId>raiden</artifactId> <version>1.1.6</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.fishlikewater</groupId> <artifactId>raiden</artifactId> <version>1.1.6</version> <packaging>pom</packaging> <name>raiden</name> <description>raiden</description> <url>https://github.com/fishlikewater/raiden/tree/master</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://github.com/fishlikewater/raiden/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>zhangxiang</name> <email>fishlikewater@126.com</email> </developer> </developers> <modules> <module>raiden-dependency</module> <module>raiden-bom</module> <module>raiden-parent</module> </modules> <scm> <connection>scm:git@github.com/fishlikewater/raiden.git</connection> <url>git@github.com/fishlikewater/raiden.git</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/fishlikewater/raiden/issues</url> </issueManagement> <properties> <maven.compiler.source.version>21</maven.compiler.source.version> <maven-plugin-plugin.version>3.9.0</maven-plugin-plugin.version> <javadoc.version>3.7.0</javadoc.version> <maven-compiler.version>3.12.1</maven-compiler.version> <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version> <maven-source.verion>3.3.0</maven-source.verion> <revision>1.1.6</revision> <maven-deploy.version>3.1.2</maven-deploy.version> <lombok.version>1.18.30</lombok.version> <gpg.version>3.2.4</gpg.version> <maven.compiler.target.version>21</maven.compiler.target.version> <license-maven.version>3.0</license-maven.version> <maven.build.timestamp.format>yyyy</maven.build.timestamp.format> <mapstruct.version>1.5.5.Final</mapstruct.version> <maven.compiler.compilerVersion>21</maven.compiler.compilerVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <therapi-runtime-javadoc.version>0.15.0</therapi-runtime-javadoc.version> <google.auto.service.version>1.1.1</google.auto.service.version> <sonatype.central.version>0.4.0</sonatype.central.version> <spring.boot.processor.version>3.2.5</spring.boot.processor.version> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler.version}</version> <configuration> <source>${maven.compiler.source.version}</source> <target>${maven.compiler.target.version}</target> <encoding>${project.build.sourceEncoding}</encoding> <compilerArgs> <arg>-parameters</arg> </compilerArgs> <annotationProcessorPaths> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring.boot.processor.version}</version> </path> <path> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>${google.auto.service.version}</version> </path> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> <path> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source.verion}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> <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> <pomElements> <parent>expand</parent> <scm>keep</scm> <url>expand</url> <developers>expand</developers> <dependencies>expand</dependencies> <distributionManagement>remove</distributionManagement> <repositories>remove</repositories> </pomElements> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>remove</goal> <goal>format</goal> </goals> </execution> </executions> <configuration> <properties> <year>${maven.build.timestamp}</year> <author>zhangxiang</author> <email>fishlikewater@126.com</email> </properties> <quiet>true</quiet> <header>${user.dir}/HEADER</header> <excludes> <exclude>**/resources/**</exclude> <exclude>**/*.properties</exclude> <exclude>**/*.yml</exclude> <exclude>*.sh</exclude> <exclude>*.yml</exclude> <exclude>.editorconfig</exclude> <exclude>.gitignore</exclude> <exclude>**/*.md</exclude> <exclude>**/*.xml</exclude> <exclude>**/raiden/core/Assert.java</exclude> <exclude>**/references/**/**.java</exclude> </excludes> <strictCheck>true</strictCheck> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${sonatype.central.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>sonatype</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </execution> </executions> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <charset>${project.build.sourceEncoding}</charset> <docencoding>${project.build.sourceEncoding}</docencoding> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>github</keyname> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>