ruoyi-vue-plus-gowa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.gowa2017</groupId> <artifactId>ruoyi-vue-plus-gowa</artifactId> <version>0.0.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.gowa2017</groupId> <artifactId>ruoyi-vue-plus-gowa</artifactId> <version>0.0.1</version> <packaging>jar</packaging> <url>https://github.com/Gowa2017/RuoYi-Vue-Plus-Gowa</url> <name>ruoyi-vue-plus-gowa</name> <description> Some utils need by gowa. </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>gowa2017</name> <email>gowa2017@aliyun.com</email> <url>https://github.com/Gowa2017/RuoYi-Vue-Plus-Gowa</url> <timezone>+8</timezone> </developer> </developers> <scm> <!-- 项目URL --> <url>https://github.com/Gowa2017/RuoYi-Vue-Plus-Gowa</url> <!-- 项目URL.git --> <connection>https://github.com/Gowa2017/RuoYi-Vue-Plus-Gowa</connection> <!-- 项目URL.git --> <developerConnection>https://github.com/Gowa2017/RuoYi-Vue-Plus-Gowa</developerConnection> </scm> <properties> <java.version>17</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- 服务id 也就是setting.xml中的servers.server.id --> <serverId>sonatype</serverId> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>3.4.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.linpeilie</groupId> <artifactId>mapstruct-plus-spring-boot-starter</artifactId> <version>1.4.6</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <!-- 编译插件,设置源码以及编译的jdk版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <!-- Gpg Signature --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <!-- 关键配置:指定密码输入方式 --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <!-- 新方式的配置,将组件部署到OSSRH并将其发布到Central Repository--> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <!-- 服务id 也就是setting.xml中的servers.server.id --> <publishingServerId>sonatype</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>${serverId}</id> <url>https://central.sonatype.com/</url> </snapshotRepository> </distributionManagement> </project>