| | |
| | | <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> |
| | | |