| | |
| | | <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> |
| | |
| | | <!-- Log4j2爆雷漏洞 --> |
| | | <log4j2.version>2.17.0</log4j2.version> |
| | | <logback.version>1.2.9</logback.version> |
| | | <!-- webservice --> |
| | | <cxf.version>3.2.4</cxf.version> |
| | | </properties> |
| | | |
| | | <repositories> |
| | |
| | | <artifactId>java-jwt</artifactId> |
| | | <version>${java-jwt.version}</version> |
| | | </dependency> |
| | | <!-- WebService --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web-services</artifactId> |
| | | </dependency> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.apache.cxf</groupId>--> |
| | | <!-- <artifactId>cxf-spring-boot-starter-jaxws</artifactId>--> |
| | | <!-- <version>${cxf.version}</version>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- CXF webservice --> |
| | | <dependency> |
| | | <groupId>org.apache.cxf</groupId> |
| | | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
| | | <version>3.2.1</version> |
| | | <version>${cxf.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.cxf</groupId> |
| | | <artifactId>cxf-rt-transports-http</artifactId> |
| | | <version>3.2.1</version> |
| | | <version>${cxf.version}</version> |
| | | </dependency> |
| | | |
| | | <!--shiro--> |
| | |
| | | <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> |
| | | |