Revise maven test skip settings.

This commit is contained in:
Sutra Zhou 2021-08-07 23:41:29 +08:00
parent 987dffb167
commit bf8ca3a227
6 changed files with 69 additions and 52 deletions

View File

@ -57,7 +57,6 @@
<properties> <properties>
<maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target> <maven.compiler.target>1.6</maven.compiler.target>
<maven.test.skip>true</maven.test.skip>
<locales>zh_CN</locales> <locales>zh_CN</locales>
<fastjson.version>1.2.31</fastjson.version> <fastjson.version>1.2.31</fastjson.version>
</properties> </properties>

View File

@ -11,6 +11,9 @@
<name>weixin4j-base</name> <name>weixin4j-base</name>
<description>微信开发基础工程</description> <description>微信开发基础工程</description>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-base</url> <url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-base</url>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
<build> <build>
<resources> <resources>
<resource> <resource>

View File

@ -11,6 +11,9 @@
<name>weixin4j-mp</name> <name>weixin4j-mp</name>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-mp</url> <url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-mp</url>
<description>微信公众平台API</description> <description>微信公众平台API</description>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -1,53 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<parent> xsi:schemaLocation="
<artifactId>weixin4j</artifactId> http://maven.apache.org/POM/4.0.0
<groupId>com.foxinmy</groupId> http://maven.apache.org/xsd/maven-4.0.0.xsd">
<version>1.9.2-SNAPSHOT</version> <parent>
</parent> <artifactId>weixin4j</artifactId>
<modelVersion>4.0.0</modelVersion> <groupId>com.foxinmy</groupId>
<name>weixin4j-pay</name> <version>1.9.2-SNAPSHOT</version>
<artifactId>weixin4j-pay</artifactId> </parent>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-pay</url> <modelVersion>4.0.0</modelVersion>
<description>微信支付商户平台API</description> <name>weixin4j-pay</name>
<developers> <artifactId>weixin4j-pay</artifactId>
<developer> <url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-pay</url>
<id>kit-lee</id> <description>微信支付商户平台API</description>
<name>Kit lee</name> <properties>
<email>ryuji.cn@gmail.com</email> <maven.test.skip>true</maven.test.skip>
<url>https://github.com/kit-lee</url> </properties>
<properties> <developers>
<contact>kit_21cn@21cn.com</contact> <developer>
<forkRepo>https://github.com/kit-lee/weixin4j</forkRepo> <id>kit-lee</id>
</properties> <name>Kit lee</name>
</developer> <email>ryuji.cn@gmail.com</email>
</developers> <url>https://github.com/kit-lee</url>
<build> <properties>
<plugins> <contact>kit_21cn@21cn.com</contact>
<plugin> <forkRepo>https://github.com/kit-lee/weixin4j</forkRepo>
<groupId>org.apache.maven.plugins</groupId> </properties>
<artifactId>maven-assembly-plugin</artifactId> </developer>
</plugin> </developers>
</plugins> <build>
</build> <plugins>
<dependencies> <plugin>
<dependency> <groupId>org.apache.maven.plugins</groupId>
<groupId>com.foxinmy</groupId> <artifactId>maven-assembly-plugin</artifactId>
<artifactId>weixin4j-base</artifactId> </plugin>
<version>${project.version}</version> </plugins>
</dependency> </build>
<!-- 兼容 JDK 9+ 后的maven环境编译 --> <dependencies>
<dependency> <dependency>
<groupId>javax.xml.bind</groupId> <groupId>com.foxinmy</groupId>
<artifactId>jaxb-api</artifactId> <artifactId>weixin4j-base</artifactId>
<version>2.2.11</version> <version>${project.version}</version>
<scope>provided</scope> </dependency>
</dependency> <!-- 兼容 JDK 9+ 后的maven环境编译 -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>javax.xml.bind</groupId>
<artifactId>junit</artifactId> <artifactId>jaxb-api</artifactId>
</dependency> <version>2.2.11</version>
</dependencies> <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project> </project>

View File

@ -11,6 +11,9 @@
<name>weixin4j-qy</name> <name>weixin4j-qy</name>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-qy</url> <url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-qy</url>
<description>微信企业号API</description> <description>微信企业号API</description>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -12,6 +12,9 @@
<name>weixin4j-server</name> <name>weixin4j-server</name>
<url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-server</url> <url>https://github.com/foxinmy/weixin4j/tree/master/weixin4j-server</url>
<description>微信消息netty服务器</description> <description>微信消息netty服务器</description>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>