|
@@ -5,8 +5,12 @@
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<groupId>com.bstek.urule</groupId>
|
|
<groupId>com.bstek.urule</groupId>
|
|
|
<artifactId>urule-springboot</artifactId>
|
|
<artifactId>urule-springboot</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
|
+ <version>2.1.8-SNAPSHOT</version>
|
|
|
<properties>
|
|
<properties>
|
|
|
|
|
+ <fastjson.version>1.2.83</fastjson.version>
|
|
|
|
|
+
|
|
|
|
|
+ <java.main.class>com.bstek.urule.springboot.Application</java.main.class>
|
|
|
|
|
+
|
|
|
<java.version>1.8</java.version>
|
|
<java.version>1.8</java.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
</properties>
|
|
@@ -31,8 +35,45 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>2.2.4.RELEASE</version>
|
|
<version>2.2.4.RELEASE</version>
|
|
|
|
|
+ <relativePath />
|
|
|
</parent>
|
|
</parent>
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
|
+ <!-- lombok插件 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
|
+ <version>${lombok.version}</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
|
|
+ <version>1.7.25</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
|
|
+ <artifactId>logback-core</artifactId>
|
|
|
|
|
+ <version>${logback.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
|
|
+ <version>${logback.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-orm</artifactId>
|
|
|
|
|
+ <version>5.2.3.RELEASE</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
@@ -51,12 +92,19 @@
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>5.1.46</version>
|
|
|
|
|
|
|
+ <version>8.0.20</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
+ <version>1.1.9</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.bstek.urule</groupId>
|
|
<groupId>com.bstek.urule</groupId>
|
|
|
- <artifactId>urule-console-pro</artifactId>
|
|
|
|
|
- <version>3.0.2</version>
|
|
|
|
|
|
|
+ <artifactId>urule-console</artifactId>
|
|
|
|
|
+ <version>${project.version}</version>
|
|
|
<exclusions>
|
|
<exclusions>
|
|
|
<exclusion>
|
|
<exclusion>
|
|
|
<groupId>org.slf4j</groupId>
|
|
<groupId>org.slf4j</groupId>
|
|
@@ -77,6 +125,34 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
</plugin>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
+ <artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
+ <version>1.6.0</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <mainClass>${java.main.class}</mainClass>
|
|
|
|
|
+ <!--
|
|
|
|
|
+ <executable>java</executable>
|
|
|
|
|
+ <arguments>
|
|
|
|
|
+ <argument>-Xmx64m</argument>
|
|
|
|
|
+ <argument>-classpath</argument>
|
|
|
|
|
+ <classpath/>
|
|
|
|
|
+ <argument>${java.main.class}</argument>
|
|
|
|
|
+ </arguments>
|
|
|
|
|
+ -->
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
+ <version>3.1.0</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
+ <warName>${project.artifactId}</warName>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
</plugins>
|
|
|
</build>
|
|
</build>
|
|
|
|
|
|