|
@@ -1,120 +1,95 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
|
|
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
- <artifactId>seecoder-devcloud-web</artifactId>
|
|
|
|
|
- <version>0.1.0</version>
|
|
|
|
|
- <packaging>jar</packaging>
|
|
|
|
|
- <description>Demo project for Spring Boot</description>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
<parent>
|
|
|
- <artifactId>seecoder-devcloud-parent</artifactId>
|
|
|
|
|
<groupId>cn.seecoder</groupId>
|
|
<groupId>cn.seecoder</groupId>
|
|
|
|
|
+ <artifactId>seecoder-devcloud-parent</artifactId>
|
|
|
<version>0.1.0</version>
|
|
<version>0.1.0</version>
|
|
|
</parent>
|
|
</parent>
|
|
|
|
|
|
|
|
- <properties>
|
|
|
|
|
- <java.version>1.8</java.version>
|
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
- <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
|
|
|
|
|
- <skipTests>true</skipTests>
|
|
|
|
|
- </properties>
|
|
|
|
|
|
|
+ <artifactId>seecoder-devcloud-web</artifactId>
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
+ <name>seecoder-devcloud-web</name>
|
|
|
|
|
+ <description>DevCloud web application</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
|
|
- <version>${lombok.version}</version>
|
|
|
|
|
|
|
+ <groupId>cn.seecoder</groupId>
|
|
|
|
|
+ <artifactId>seecoder-devcloud-common</artifactId>
|
|
|
|
|
+ <version>${project.version}</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <!-- Swagger -->
|
|
|
|
|
- <!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter -->
|
|
|
|
|
- <!-- <dependency>-->
|
|
|
|
|
- <!-- <groupId>io.springfox</groupId>-->
|
|
|
|
|
- <!-- <artifactId>springfox-boot-starter</artifactId>-->
|
|
|
|
|
- <!-- <version>3.0.0</version>-->
|
|
|
|
|
- <!-- </dependency>-->
|
|
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>net.sf.json-lib</groupId>
|
|
|
|
|
- <artifactId>json-lib</artifactId>
|
|
|
|
|
- <version>2.4</version>
|
|
|
|
|
- <classifier>jdk15</classifier>
|
|
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
|
|
+ <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
|
- <artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
- <version>2.5.0</version>
|
|
|
|
|
|
|
+ <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
|
- <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
- <version>2.5.0</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-mail</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
-
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>cn.seecoder</groupId>
|
|
|
|
|
- <artifactId>seecoder-devcloud-common</artifactId>
|
|
|
|
|
- <version>0.1.0</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
|
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
-
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
|
+ <groupId>org.hibernate.validator</groupId>
|
|
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
-
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
|
|
|
+ <groupId>javax.validation</groupId>
|
|
|
|
|
+ <artifactId>validation-api</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
- <scope>test</scope>
|
|
|
|
|
|
|
+ <groupId>org.springframework.data</groupId>
|
|
|
|
|
+ <artifactId>spring-data-commons</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
- <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
- <version>2.1.4</version>
|
|
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
- <artifactId>mybatis-spring-boot-starter-test</artifactId>
|
|
|
|
|
- <version>2.1.4</version>
|
|
|
|
|
|
|
+ <groupId>net.sf.json-lib</groupId>
|
|
|
|
|
+ <artifactId>json-lib</artifactId>
|
|
|
|
|
+ <classifier>jdk15</classifier>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
|
|
- <artifactId>spring-security-test</artifactId>
|
|
|
|
|
- <scope>test</scope>
|
|
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.nju.edu</groupId>
|
|
<groupId>com.nju.edu</groupId>
|
|
|
<artifactId>seecoder-gitlab-client</artifactId>
|
|
<artifactId>seecoder-gitlab-client</artifactId>
|
|
@@ -122,81 +97,47 @@
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
|
|
- <version>5.9.0.202009080501-r</version>
|
|
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.google.guava</groupId>
|
|
<groupId>com.google.guava</groupId>
|
|
|
<artifactId>guava</artifactId>
|
|
<artifactId>guava</artifactId>
|
|
|
- <version>20.0</version>
|
|
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.spotify</groupId>
|
|
<groupId>com.spotify</groupId>
|
|
|
<artifactId>docker-client</artifactId>
|
|
<artifactId>docker-client</artifactId>
|
|
|
- <version>8.16.0</version>
|
|
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.hibernate.validator</groupId>
|
|
|
|
|
- <artifactId>hibernate-validator</artifactId>
|
|
|
|
|
|
|
+ <groupId>io.kubernetes</groupId>
|
|
|
|
|
+ <artifactId>client-java</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>javax.validation</groupId>
|
|
|
|
|
- <artifactId>validation-api</artifactId>
|
|
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>org.springframework.data</groupId>
|
|
|
|
|
- <artifactId>spring-data-commons</artifactId>
|
|
|
|
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
+ <artifactId>mybatis-spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>io.kubernetes</groupId>
|
|
|
|
|
- <artifactId>client-java</artifactId>
|
|
|
|
|
- <version>10.0.0</version>
|
|
|
|
|
|
|
+ <groupId>org.springframework.security</groupId>
|
|
|
|
|
+ <artifactId>spring-security-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
|
|
- <dependencyManagement>
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
|
|
- <type>pom</type>
|
|
|
|
|
- <scope>import</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- </dependencies>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- </dependencyManagement>
|
|
|
|
|
- <repositories>
|
|
|
|
|
- <!-- ... possibly other repository elements ... -->
|
|
|
|
|
- <repository>
|
|
|
|
|
- <id>spring-snapshot</id>
|
|
|
|
|
- <name>Spring Snapshot Repository</name>
|
|
|
|
|
- <url>https://repo.spring.io/snapshot</url>
|
|
|
|
|
- </repository>
|
|
|
|
|
- </repositories>
|
|
|
|
|
<build>
|
|
<build>
|
|
|
<plugins>
|
|
<plugins>
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
- <version>3.8.1</version>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <source>1.8</source>
|
|
|
|
|
- <target>1.8</target>
|
|
|
|
|
- <encoding>UTF-8</encoding>
|
|
|
|
|
- <skip>true</skip>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </plugin>
|
|
|
|
|
<plugin>
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <version>2.3.4.RELEASE</version>
|
|
|
|
|
<configuration>
|
|
<configuration>
|
|
|
<mainClass>cn.seecoder.web.DevcloudWebApplication</mainClass>
|
|
<mainClass>cn.seecoder.web.DevcloudWebApplication</mainClass>
|
|
|
</configuration>
|
|
</configuration>
|
|
|
<executions>
|
|
<executions>
|
|
|
<execution>
|
|
<execution>
|
|
|
- <id>repackage</id>
|
|
|
|
|
<goals>
|
|
<goals>
|
|
|
<goal>repackage</goal>
|
|
<goal>repackage</goal>
|
|
|
</goals>
|
|
</goals>
|
|
@@ -205,5 +146,4 @@
|
|
|
</plugin>
|
|
</plugin>
|
|
|
</plugins>
|
|
</plugins>
|
|
|
</build>
|
|
</build>
|
|
|
-
|
|
|
|
|
</project>
|
|
</project>
|