You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
5.3 KiB
XML
152 lines
5.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>com.op</groupId>
|
|
<artifactId>op-modules</artifactId>
|
|
<version>0.0.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>op-modules-sap</artifactId>
|
|
|
|
<description>
|
|
op-modules-sap系统模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Actuator -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Swagger UI -->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${swagger.fox.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Mysql Connector -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
<!-- sqlserver的数据库驱动包 -->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
<version>6.1.0.jre8</version>
|
|
</dependency>
|
|
<!-- OP Common DataSource -->
|
|
<dependency>
|
|
<groupId>com.op</groupId>
|
|
<artifactId>op-common-datasource</artifactId>
|
|
</dependency>
|
|
|
|
<!-- OP Common DataScope -->
|
|
<dependency>
|
|
<groupId>com.op</groupId>
|
|
<artifactId>op-common-datascope</artifactId>
|
|
</dependency>
|
|
|
|
<!-- OP Common Log -->
|
|
<dependency>
|
|
<groupId>com.op</groupId>
|
|
<artifactId>op-common-log</artifactId>
|
|
</dependency>
|
|
|
|
<!-- OP Common Swagger -->
|
|
<dependency>
|
|
<groupId>com.op</groupId>
|
|
<artifactId>op-common-swagger</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>5.3.24</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- SAP JOC 3 -->
|
|
<dependency>
|
|
<groupId>com.sap.conn</groupId>
|
|
<artifactId>sapjco</artifactId>
|
|
<version>3.0.8</version>
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${project.basedir}/src/main/lib/sapjco3.jar</systemPath>-->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!-- <plugin>-->
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <source>1.8</source>-->
|
|
<!-- <target>1.8</target>-->
|
|
<!-- <encoding>UTF-8</encoding>-->
|
|
<!-- <compilerArguments>-->
|
|
<!-- <extdirs>${project.basedir}/lib</extdirs>-->
|
|
<!-- </compilerArguments>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
</plugins>
|
|
<!-- <resources>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>${project.basedir}/src/main/lib</directory>-->
|
|
<!-- <targetPath>BOOT-INF/lib/</targetPath>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>**/*.jar</include>-->
|
|
<!-- </includes>-->
|
|
<!-- </resource>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>${project.basedir}/src/main/lib</directory>-->
|
|
<!-- <targetPath>BOOT-INF</targetPath>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>**/*.so</include>-->
|
|
<!-- <include>**/*.dll</include>-->
|
|
<!-- </includes>-->
|
|
<!-- </resource>-->
|
|
<!-- </resources>-->
|
|
</build>
|
|
|
|
</project>
|