From 5e2419fdbdac82bfff7a2420445c7cc86cc20e9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=A6=E4=B9=8B=E6=B2=A7=E6=B5=B7?= <1227826445@qq.com> Date: Tue, 6 Aug 2019 20:33:36 +0800 Subject: [PATCH] =?UTF-8?q?spring-boot-git-Jenkins=20=E7=BB=83=E4=B9=A0?= =?UTF-8?q?=E4=BD=BF=E7=94=A8git-Jenkins=E8=87=AA=E5=8A=A8=E5=8C=96?= =?UTF-8?q?=E9=83=A8=E7=BD=B2=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spring-boot-git-Jenkins/pom.xml | 42 +++++++++++ .../spring-boot-git-Jenkins.iml | 74 ++++++++++++++++++- .../src/main/java/com/dk/GitApplication.java | 4 +- 3 files changed, 118 insertions(+), 2 deletions(-) diff --git a/spring-boot-git-Jenkins/pom.xml b/spring-boot-git-Jenkins/pom.xml index 2819155..f1e7d4f 100644 --- a/spring-boot-git-Jenkins/pom.xml +++ b/spring-boot-git-Jenkins/pom.xml @@ -7,6 +7,48 @@ com.git.cases spring-boot-git-Jenkins 1.0-SNAPSHOT + + org.springframework.boot + spring-boot-starter-parent + 2.1.6.RELEASE + + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework + spring-tx + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + \ No newline at end of file diff --git a/spring-boot-git-Jenkins/spring-boot-git-Jenkins.iml b/spring-boot-git-Jenkins/spring-boot-git-Jenkins.iml index 62eef8f..d023604 100644 --- a/spring-boot-git-Jenkins/spring-boot-git-Jenkins.iml +++ b/spring-boot-git-Jenkins/spring-boot-git-Jenkins.iml @@ -1,6 +1,20 @@ - + + + + + + + + + + + + + + + @@ -11,5 +25,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spring-boot-git-Jenkins/src/main/java/com/dk/GitApplication.java b/spring-boot-git-Jenkins/src/main/java/com/dk/GitApplication.java index a019c8e..e266155 100644 --- a/spring-boot-git-Jenkins/src/main/java/com/dk/GitApplication.java +++ b/spring-boot-git-Jenkins/src/main/java/com/dk/GitApplication.java @@ -1,12 +1,14 @@ package com.dk; +import org.springframework.boot.autoconfigure.SpringBootApplication; + /** * @Description: TODO * @Author Cheri * @Date 2019/8/6 - 16:25 * @Version V1.0 **/ - +@SpringBootApplication public class GitApplication { public static void main(String[] args) { System.out.println("hello git"); -- Gitee