1 Star 0 Fork 3

吴春杰/qywx

forked from shuaidd/qywx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 7.92 KB
一键复制 编辑 原始数据 按行查看 历史
ddshuai 提交于 2023-10-23 15:27 . 升级到4.4.0 支持多企业
<?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>com.github.shuaidd</groupId>
<artifactId>qywx</artifactId>
<packaging>pom</packaging>
<version>4.4.0</version>
<modules>
<module>qywx-spring-boot-starter</module>
<module>qywx-spring-boot-autoconfigurator</module>
<module>qywx-spring-boot-api</module>
<module>qywx-spring-boot-model</module>
</modules>
<name>qywx</name>
<url>https://github.com/shuaidd</url>
<description>企业微信api调用工具包</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<org.springframework.cloud.version>2021.0.4</org.springframework.cloud.version>
<feign-jackson>10.2.0</feign-jackson>
<commons-lang3>3.0</commons-lang3>
<commons-collections4>4.1</commons-collections4>
<hutool-all>4.5.3</hutool-all>
<jackson-annotations>2.9.9</jackson-annotations>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.6.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${org.springframework.cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/io.github.openfeign/feign-jackson -->
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-jackson</artifactId>
<version>${feign-jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson-annotations}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${commons-collections4}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool-all}</version>
</dependency>
<dependency>
<groupId>com.github.shuaidd</groupId>
<artifactId>qywx-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.shuaidd</groupId>
<artifactId>qywx-spring-boot-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.shuaidd</groupId>
<artifactId>qywx-spring-boot-autoconfigurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.shuaidd</groupId>
<artifactId>qywx-spring-boot-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>qywx</artifactId>
<groupId>com.github.shuaidd</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<javadocExecutable>
/Library/Java/JavaVirtualMachines/zulu-8.jdk/Contents/Home/bin/javadoc
</javadocExecutable>
</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>
</plugins>
</build>
</profile>
</profiles>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/shuaidd/qywx</url>
<connection>https://github.com/shuaidd/qywx.git</connection>
<developerConnection>https://github.com/shuaidd</developerConnection>
</scm>
<developers>
<developer>
<name>shuaidd</name>
<email>shuaidd@139.com</email>
<url>https://github.com/shuaidd</url>
</developer>
</developers>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/chuenjye_wu/qywx.git
git@gitee.com:chuenjye_wu/qywx.git
chuenjye_wu
qywx
qywx
master

搜索帮助