|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 |
| - <parent> |
6 |
| - <artifactId>wx-java-spring-boot-starters</artifactId> |
7 |
| - <groupId>com.github.binarywang</groupId> |
8 |
| - <version>3.9.3.B</version> |
9 |
| - </parent> |
10 |
| - <modelVersion>4.0.0</modelVersion> |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <parent> |
| 6 | + <artifactId>wx-java-spring-boot-starters</artifactId> |
| 7 | + <groupId>com.github.binarywang</groupId> |
| 8 | + <version>3.9.3.B</version> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
11 | 11 |
|
12 |
| - <artifactId>wx-java-mp-spring-boot-starter</artifactId> |
13 |
| - <name>WxJava - Spring Boot Starter for MP</name> |
14 |
| - <description>微信公众号开发的 Spring Boot Starter</description> |
| 12 | + <artifactId>wx-java-mp-spring-boot-starter</artifactId> |
| 13 | + <name>WxJava - Spring Boot Starter for MP</name> |
| 14 | + <description>微信公众号开发的 Spring Boot Starter</description> |
15 | 15 |
|
16 |
| - <dependencies> |
17 |
| - <dependency> |
18 |
| - <groupId>com.github.binarywang</groupId> |
19 |
| - <artifactId>weixin-java-mp</artifactId> |
20 |
| - <version>${project.version}</version> |
21 |
| - </dependency> |
22 |
| - <dependency> |
23 |
| - <groupId>redis.clients</groupId> |
24 |
| - <artifactId>jedis</artifactId> |
25 |
| - <scope>compile</scope> |
26 |
| - </dependency> |
27 |
| - <dependency> |
28 |
| - <groupId>org.springframework.data</groupId> |
29 |
| - <artifactId>spring-data-redis</artifactId> |
30 |
| - <version>${spring.boot.version}</version> |
31 |
| - <scope>provided</scope> |
32 |
| - </dependency> |
33 |
| - </dependencies> |
| 16 | + <dependencies> |
| 17 | + <dependency> |
| 18 | + <groupId>com.github.binarywang</groupId> |
| 19 | + <artifactId>weixin-java-mp</artifactId> |
| 20 | + <version>${project.version}</version> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>redis.clients</groupId> |
| 24 | + <artifactId>jedis</artifactId> |
| 25 | + <scope>compile</scope> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework.data</groupId> |
| 29 | + <artifactId>spring-data-redis</artifactId> |
| 30 | + <version>${spring.boot.version}</version> |
| 31 | + <scope>provided</scope> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.jodd</groupId> |
| 35 | + <artifactId>jodd-http</artifactId> |
| 36 | + <scope>provided</scope> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>com.squareup.okhttp3</groupId> |
| 40 | + <artifactId>okhttp</artifactId> |
| 41 | + <scope>provided</scope> |
| 42 | + </dependency> |
| 43 | + </dependencies> |
34 | 44 |
|
35 |
| - <build> |
36 |
| - <plugins> |
37 |
| - <plugin> |
38 |
| - <groupId>org.springframework.boot</groupId> |
39 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
40 |
| - <version>${spring.boot.version}</version> |
41 |
| - </plugin> |
42 |
| - <plugin> |
43 |
| - <groupId>org.apache.maven.plugins</groupId> |
44 |
| - <artifactId>maven-source-plugin</artifactId> |
45 |
| - <version>2.2.1</version> |
46 |
| - <executions> |
47 |
| - <execution> |
48 |
| - <id>attach-sources</id> |
49 |
| - <goals> |
50 |
| - <goal>jar-no-fork</goal> |
51 |
| - </goals> |
52 |
| - </execution> |
53 |
| - </executions> |
54 |
| - </plugin> |
55 |
| - </plugins> |
56 |
| - </build> |
| 45 | + <build> |
| 46 | + <plugins> |
| 47 | + <plugin> |
| 48 | + <groupId>org.springframework.boot</groupId> |
| 49 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 50 | + <version>${spring.boot.version}</version> |
| 51 | + </plugin> |
| 52 | + <plugin> |
| 53 | + <groupId>org.apache.maven.plugins</groupId> |
| 54 | + <artifactId>maven-source-plugin</artifactId> |
| 55 | + <version>2.2.1</version> |
| 56 | + <executions> |
| 57 | + <execution> |
| 58 | + <id>attach-sources</id> |
| 59 | + <goals> |
| 60 | + <goal>jar-no-fork</goal> |
| 61 | + </goals> |
| 62 | + </execution> |
| 63 | + </executions> |
| 64 | + </plugin> |
| 65 | + </plugins> |
| 66 | + </build> |
57 | 67 |
|
58 | 68 | </project>
|
0 commit comments