123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?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">
- <parent>
- <artifactId>eis_qnym_java</artifactId>
- <groupId>com.prolog.eis</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>eis-business-dismantle</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.prolog.eis</groupId>
- <artifactId>eis-business-facade</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <groupId>com.prolog.framework</groupId>
- <artifactId>plg-fx-redis-autoconfigure</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.prolog.eis</groupId>
- <artifactId>eis-business-strategy</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.prolog.framework</groupId>
- <artifactId>plg-fx-starter</artifactId>
- <exclusions>
- <exclusion>
- <groupId>com.prolog.framework</groupId>
- <artifactId>plg-fx-starter-distributedLock</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- </exclusion>
- <exclusion>
- <groupId>com.prolog.framework</groupId>
- <artifactId>plg-fx-redis-autoconfigure</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.3.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </exclusion>
- </exclusions>
- <scope>test</scope>
- </dependency>
- <!--LED6-->
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.4</version>
- <classifier>jdk15</classifier>
- </dependency>
- <dependency>
- <groupId>com.3rd.led</groupId>
- <artifactId>bx06</artifactId>
- <version>0.6.0</version>
- </dependency>
- <dependency>
- <groupId>com.3rd.led</groupId>
- <artifactId>bx06-message</artifactId>
- <version>0.60</version>
- </dependency>
- <dependency>
- <groupId>uia</groupId>
- <artifactId>uia.com</artifactId>
- <version>0.2.2</version>
- </dependency>
- <dependency>
- <groupId>uia</groupId>
- <artifactId>uia.message</artifactId>
- <version>0.6.0</version>
- </dependency>
- <dependency>
- <groupId>uia</groupId>
- <artifactId>uia.utils</artifactId>
- <version>0.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.simpleframework</groupId>
- <artifactId>simple-xml</artifactId>
- <version>2.7.1</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
- <!--LED6-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.3.4.RELEASE</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <executable>true</executable>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://192.168.0.167:8081/repository/releases/</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <url>http://192.168.0.167:8081/repository/snapshots</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|