update pom
This commit is contained in:
parent
96fa70c486
commit
cab8e79c02
56
pom.xml
56
pom.xml
@ -7,6 +7,62 @@
|
|||||||
<groupId>com.zeekling</groupId>
|
<groupId>com.zeekling</groupId>
|
||||||
<artifactId>solo.weixin</artifactId>
|
<artifactId>solo.weixin</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<finalName.text>project-final-name</finalName.text>
|
||||||
|
<!--https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-dependencies -->
|
||||||
|
<spring-cloud-dependencies.version>Hoxton.RELEASE</spring-cloud-dependencies.version>
|
||||||
|
<!--https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
||||||
|
<fastjson.version>1.2.62</fastjson.version>
|
||||||
|
<!--https://mvnrepository.com/artifact/com.google.guava/guava -->
|
||||||
|
<guava.version>28.2-jre</guava.version>
|
||||||
|
<!--https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
|
||||||
|
<hutool-all.version>5.1.3</hutool-all.version>
|
||||||
|
<spring-boot.version>2.2.4.RELEASE</spring-boot.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
<version>2.2.4.RELEASE</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||||||
|
<version>${spring-cloud-dependencies.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
||||||
|
<version>1.5.3.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
|
<version>${spring-boot.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<version>${spring-boot.version}</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
17
src/main/java/com/zeekling/solo/weixin/WeXinApp.java
Normal file
17
src/main/java/com/zeekling/solo/weixin/WeXinApp.java
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package com.zeekling.solo.weixin;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author zeekling [lingzhaohui@zeekling.cn]
|
||||||
|
* @version 1.0
|
||||||
|
* @apiNote
|
||||||
|
* @since 2020-03-15
|
||||||
|
*/
|
||||||
|
|
||||||
|
//@SpringBootApplication
|
||||||
|
public class WeXinApp {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
// SpringApplication.run(WeXinApp.class, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
7
src/main/java/com/zeekling/solo/weixin/package-info.java
Normal file
7
src/main/java/com/zeekling/solo/weixin/package-info.java
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
/**
|
||||||
|
* @apiNote
|
||||||
|
* @version 1.0
|
||||||
|
* @author zeekling [lingzhaohui@zeekling.cn]
|
||||||
|
* @since 2020-03-15
|
||||||
|
*/
|
||||||
|
package com.zeekling.solo.weixin;
|
Loading…
Reference in New Issue
Block a user