123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <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.unis.springcloud</groupId>
- <artifactId>parent</artifactId>
- <version>0.0.4-SNAPSHOT</version>
- </parent>
- <groupId>com.unis.intelligence</groupId>
- <artifactId>intelligence-app</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>intelligence-app</name>
- <url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <artifactId>intelligence-client</artifactId>
- <groupId>com.unis.intelligence</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>com.unis.springcloud</groupId>
- <artifactId>common</artifactId>
- <version>0.0.5-SNAPSHOT</version>
- </dependency>
-
- <!-- feign远程调用 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-config-client</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
- </dependency>
- <dependency>
- <artifactId>flowable-client</artifactId>
- <groupId>com.unis.flowable</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.unis.base</groupId>
- <artifactId>base-client</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <!-- 依赖gbase Jar包-->
- <dependency>
- <groupId>com.gbase8s</groupId>
- <artifactId>ifxjdbc</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.gbase</groupId>
- <artifactId>druid</artifactId>
- <version>1.0.28</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.18</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.name}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.unis.intelligence.app.IntelligenceApp</mainClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://repo.spring.io/milestone</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- </project>
|