| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?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.jwipc</groupId>
- <artifactId>jwipc-dependency</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath>../jwipc-dependency/pom.xml</relativePath>
- </parent>
- <artifactId>portal</artifactId>
- <name>${project.artifactId}</name>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-web</artifactId>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>jwipc-log</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>sys-api</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>supplier-api</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>sys-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>sys-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>supplier-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>supplier-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>inquiry-api</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>inquiry-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>inquiry-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>message-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>message-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>finance-api</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>finance-logic</artifactId>
- <exclusions>
- <exclusion>
- <groupId>io.woo</groupId>
- <artifactId>htmltopdf</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>tender-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>tender-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>spe-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>spe-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>po-order-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>po-order-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>contract-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>contract-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>shoppingMall-logic</artifactId>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>shoppingMall-client-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sap.cloud.db.jdbc</groupId>
- <artifactId>ngdbc</artifactId>
- <version>2.4.51</version>
- </dependency>
- <!-- 连接池实现 -->
- <!-- <dependency>-->
- <!-- <groupId>com.zaxxer</groupId>-->
- <!-- <artifactId>HikariCP</artifactId>-->
- <!-- <version>5.0.1</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>po-order-api</artifactId>
- </dependency>
- <dependency>
- <groupId>${parent.groupId}</groupId>
- <artifactId>jwipc-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>io.woo</groupId>
- <artifactId>htmltopdf</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <configuration>
- <excludes>
- <exclude>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|