ak
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak</artifactId>
<version>0.11</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.gitee.ank_code</groupId>
<!-- <groupId>io.gitee.ank_code</groupId>-->
<artifactId>ak</artifactId>
<version>0.11</version>
<packaging>pom</packaging>
<name>ak</name>
<description>ak框架</description>
<modules>
<module>ak-core</module>
<module>ak-open</module>
<module>ak-admin</module>
<module>ak-event</module>
<module>ak-plugin</module>
<module>ak-redis</module>
</modules>
<properties>
<projectUrl>https://gitee.com/ank_code/ak.git</projectUrl>
<serverId>ossrh</serverId><!-- 服务id 也就是setting.xml中的servers.server.id -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<ak.version>0.1</ak.version>
<spring-boot.version>2.7.5</spring-boot.version>
<spring-cloud.version>2021.0.4</spring-cloud.version>
<spring-cloud-alibaba.version>2021.0.4.0</spring-cloud-alibaba.version>
<lombok.version>1.18.24</lombok.version>
<hutool.version>5.8.12</hutool.version>
<erupt.version>1.11.2</erupt.version>
<mysql.version>8.0.16</mysql.version>
<knife4j.version>4.0.0</knife4j.version>
<swagger.version>2.10.5</swagger.version>
<hutool.version>5.8.3</hutool.version>
<validation.version>2.0.1.Final</validation.version>
<easyexcel.version>3.1.1</easyexcel.version>
<jwt.version>3.15.0</jwt.version>
<jedis.version>3.3.0</jedis.version>
<wechatpay.version>0.2.5</wechatpay.version>
<alipay-easysdk.version>2.2.0</alipay-easysdk.version>
<alipay-sdk.version>4.34.0.ALL</alipay-sdk.version>
<redisson.verion>3.19.3</redisson.verion>
<okhttp.version>3.10.0</okhttp.version>
<fastjson.version>2.0.23</fastjson.version>
</properties>
<!--填入开发者信息,姓名、邮箱、项目地址-->
<developers>
<developer>
<name>ank</name>
<email>270139353@qq.com</email>
<url>${projectUrl}</url>
</developer>
</developers>
<!--以下部分内容不需要修改,直接复制咱贴即可-->
<url>${projectUrl}</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo,manual</distribution>
</license>
</licenses>
<scm>
<!-- 采用projectUrl变量代替这个值,方便给重复利用这个配置,也就是上面的标签替换一下值就行 -->
<connection>${projectUrl}</connection>
<developerConnection>${projectUrl}</developerConnection>
<url>${projectUrl}</url>
</scm>
<distributionManagement>
<snapshotRepository>
<!--这个id和settings.xml中servers.server.id要相同,因为上传jar需要登录才有权限-->
<id>${serverId}</id>
<name>OSS Snapshots Repository</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<!--这个id和settings.xml中servers.server.id要相同,因为上传jar需要登录才有权限-->
<id>${serverId}</id>
<name>OSS Staging Repository</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<!--框架依赖-->
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-admin</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-admin-cloud-node</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-admin-cloud-server</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-core</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-plt-logic-bas</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-event</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-admin-bas</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open-login-wx</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open-payment-bas</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open-payment-wx</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open-payment-ali</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open-payment-ypay</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-open-payment</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-plt-define</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-redis</artifactId>
<version>${ak.version}</version>
</dependency>
<dependency>
<groupId>io.gitee.ank_code</groupId>
<artifactId>ak-plugin-okhttp</artifactId>
<version>${ak.version}</version>
</dependency>
<!--spring boot-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>${spring-cloud-alibaba.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>
<!-- <!–openfeign–>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.cloud</groupId>-->
<!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
<!-- <version></version>-->
<!-- </dependency>-->
<!-- <!–Consul–>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.cloud</groupId>-->
<!-- <artifactId>spring-cloud-starter-consul-discovery</artifactId>-->
<!-- </dependency>-->
<!-- <!–Consul健康检查 –>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-actuator</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>${jwt.version}</version>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>${redisson.verion}</version>
</dependency>
<!--erupt-->
<dependency>
<groupId>xyz.erupt</groupId>
<artifactId>erupt-upms</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</exclusion>
</exclusions>
<version>${erupt.version}</version>
</dependency>
<dependency>
<groupId>xyz.erupt</groupId>
<artifactId>erupt-security</artifactId>
<version>${erupt.version}</version>
</dependency>
<dependency>
<groupId>xyz.erupt</groupId>
<artifactId>erupt-web</artifactId>
<version>${erupt.version}</version>
</dependency>
<dependency>
<groupId>xyz.erupt</groupId>
<artifactId>erupt-cloud-server</artifactId>
<version>${erupt.version}</version>
</dependency>
<dependency>
<groupId>xyz.erupt</groupId>
<artifactId>erupt-cloud-node-jpa</artifactId>
<version>${erupt.version}</version>
</dependency>
<!-- 代码生成器模块,正式环境可移出该模块 -->
<dependency>
<groupId>xyz.erupt</groupId>
<artifactId>erupt-generator</artifactId>
<version>${erupt.version}</version>
</dependency>
<!--第三方开放平台 -->
<dependency>
<groupId>com.github.wechatpay-apiv3</groupId>
<artifactId>wechatpay-java</artifactId>
<version>${wechatpay.version}</version>
</dependency>
<dependency>
<groupId>com.alipay.sdk</groupId>
<artifactId>alipay-sdk-java</artifactId>
<version>${alipay-sdk.version}</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.alipay.sdk</groupId>-->
<!-- <artifactId>alipay-easysdk</artifactId>-->
<!-- <version>${alipay-easysdk.version}</version>-->
<!-- </dependency>-->
<!-- mysql-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
<scope>runtime</scope>
</dependency>
<!-- redis-->
<!-- <dependency>-->
<!-- <groupId>redis.clients</groupId>-->
<!-- <artifactId>jedis</artifactId>-->
<!-- <version>${jedis.version}</version>-->
<!-- </dependency>-->
<!-- 接口文档与调试-->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-dependencies</artifactId>
<version>${knife4j.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.version}</version>
</dependency>
<!-- 工具集-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${validation.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>${easyexcel.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>${fastjson.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<!-- <build>-->
<!-- <pluginManagement>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- <version>${spring-boot.version}</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>repackage</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </pluginManagement>-->
<!-- </build>-->
<build>
<plugins>
<!-- 编译插件,设置源码以及编译的jdk版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- <version>${spring-boot.version}</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>repackage</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!--打包源码的插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<!-- Javadoc 文档生成插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<!-- 忽略生成文档中的错误 -->
<additionalparam>-Xdoclint:none</additionalparam>
<aggregate>true</aggregate>
<charset>UTF-8</charset><!-- utf-8读取文件 -->
<encoding>UTF-8</encoding><!-- utf-8进行编码代码 -->
<docencoding>UTF-8</docencoding><!-- utf-8进行编码文档 -->
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--公钥私钥插件,也就是上传需要进行验证用户名和密码过程中需要用到的插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<!--部署插件-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>${serverId}</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>