123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.unis</groupId>
- <artifactId>unis</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>unis-web-app</artifactId>
- <packaging>jar</packaging>
- <description>主启动模块</description>
- <properties>
- <netty-common.version>4.1.92.Final</netty-common.version>
- <dependency-check-maven.version>9.2.0</dependency-check-maven.version>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <!--<version>2.5.12</version>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>-->
- </plugin>
- <!--代码依赖包安全漏洞检测-->
- <plugin>
- <groupId>org.owasp</groupId>
- <artifactId>dependency-check-maven</artifactId>
- <version>${dependency-check-maven.version}</version>
- <configuration>
- <autoUpdate>true</autoUpdate>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- <phase>site</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!--漏洞扫描-->
- <!-- https://mvnrepository.com/artifact/org.owasp/dependency-check-maven -->
- <dependency>
- <groupId>org.owasp</groupId>
- <artifactId>dependency-check-maven</artifactId>
- <version>${dependency-check-maven.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/io.netty/netty-common -->
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-common</artifactId>
- <version>${netty-common.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/io.netty/netty-handler -->
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-handler</artifactId>
- <version>${netty-common.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>netty-common</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- test -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- junit -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- mysql -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!-- postgresql -->
- <!--<dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- </dependency>-->
- <!-- oracle -->
- <!--<dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc8</artifactId>
- </dependency>-->
- <!--<dependency>
- <groupId>com.oracle.database.nls</groupId>
- <artifactId>orai18n</artifactId>
- </dependency>-->
- <!-- mssql -->
- <!--<dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- </dependency>-->
- <!-- 达梦数据库 -->
- <!--<dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- </dependency>-->
- <!-- 人大金仓数据库 -->
- <!--<dependency>
- <groupId>cn.com.kingbase</groupId>
- <artifactId>kingbase8</artifactId>
- </dependency>-->
- <!-- 登录鉴权插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-auth</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>netty-handler</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-common</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 业务功能插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-biz</artifactId>
- </dependency>
- <!-- C端功能插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-client</artifactId>
- </dependency>
- <!-- 开发工具插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-dev</artifactId>
- </dependency>
- <!-- 代码生成插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-gen</artifactId>
- </dependency>
- <!-- 移动端管理插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-mobile</artifactId>
- </dependency>
- <!-- 系统功能插件 -->
- <dependency>
- <groupId>com.unis</groupId>
- <artifactId>unis-plugin-sys</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- </dependency>
- </dependencies>
- </project>
|