| | |
| | | <spring-cloud-alibaba.version>2021.0.1.0</spring-cloud-alibaba.version> |
| | | <alibaba.nacos.version>2.0.4</alibaba.nacos.version> |
| | | |
| | | <xxl-job-core.version>2.2.0</xxl-job-core.version> |
| | | <fastjson.version>1.2.83</fastjson.version> |
| | | <pegdown.version>1.6.0</pegdown.version> |
| | | <knife4j-spring-boot-starter.version>3.0.3</knife4j-spring-boot-starter.version> |
| | |
| | | <groupId>org.apache.shiro</groupId> |
| | | <artifactId>shiro-core</artifactId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>guava</artifactId> |
| | | <groupId>com.google.guava</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>commons-beanutils</artifactId> |
| | | <groupId>commons-beanutils</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | |
| | | <groupId>com.github.xiaoymin</groupId> |
| | | <artifactId>knife4j-spring-boot-starter</artifactId> |
| | | <version>${knife4j-spring-boot-starter.version}</version> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>guava</artifactId> |
| | | <groupId>com.google.guava</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | | <!-- 代码生成器 --> |
| | |
| | | <exclusion> |
| | | <groupId>commons-codec</groupId> |
| | | <artifactId>commons-codec</artifactId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>xercesImpl</artifactId> |
| | | <groupId>xerces</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-test</artifactId> |
| | | <scope>test</scope> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>asm</artifactId> |
| | | <groupId>org.ow2.asm</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>junit</groupId> |
| | |
| | | <groupId>org.pegdown</groupId> |
| | | <artifactId>pegdown</artifactId> |
| | | <version>${pegdown.version}</version> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>asm</artifactId> |
| | | <groupId>org.ow2.asm</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.hibernate</groupId> |
| | |
| | | <groupId>dom4j</groupId> |
| | | <artifactId>dom4j</artifactId> |
| | | <version>${dom4j.version}</version> |
| | | <exclusions> |
| | | <exclusion> |
| | | <artifactId>xml-apis</artifactId> |
| | | <groupId>xml-apis</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!-- fileupload --> |
| | | <dependency> |
| | |
| | | <artifactId>okhttp</artifactId> |
| | | <groupId>com.squareup.okhttp3</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>checker-qual</artifactId> |
| | | <groupId>org.checkerframework</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!-- 企业微信和钉钉 api --> |
| | |
| | | <exclusion> |
| | | <artifactId>commons-lang</artifactId> |
| | | <groupId>commons-lang</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>commons-logging</artifactId> |
| | | <groupId>commons-logging</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>commons-collections</artifactId> |
| | | <groupId>commons-collections</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | |
| | | <artifactId>xercesImpl</artifactId> |
| | | <version>2.12.0</version> |
| | | </dependency> |
| | | |
| | | <!--引入sap依赖--> |
| | | <dependency> |
| | | <groupId>com.sap</groupId> |
| | | <artifactId>sapjco3</artifactId> |
| | | <version>3.1.0</version> |
| | | <scope>system</scope> |
| | | <systemPath>${project.basedir}/src/main/resources/lib/sapjco3.jar</systemPath> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | </plugin> |
| | | <!-- 指定JDK编译版本 --> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | |
| | | <include>**/*.ftl</include> |
| | | </includes> |
| | | </resource> |
| | | <resource> |
| | | <!--外部jar存放路径--> |
| | | <directory>${project.basedir}/src/main/resources/lib</directory> |
| | | <targetPath>BOOT-INF/lib/</targetPath> |
| | | <includes> |
| | | <include>**/*.jar</include> |
| | | </includes> |
| | | </resource> |
| | | </resources> |
| | | </build> |
| | | |