123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?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>
- <!-- <groupId>com.jusfoun.lsjccView</groupId> -->
- <artifactId>tjksh</artifactId>
- <version>1.0</version>
- <name>tjksh</name>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.jusfoun</groupId>
- <artifactId>base</artifactId>
- <version>2.1</version>
- </parent>
- <properties>
- <docker.image.prefix>springboot</docker.image.prefix>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.jusfoun</groupId>
- <artifactId>common</artifactId>
- <version>1.0</version>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <!-- <version>3.1.0</version> -->
- </exclusion>
- </exclusions>
- </dependency>
- <!-- <dependency>
- <groupId>cn.easyproject</groupId>
- <artifactId>ojdbc7</artifactId>
- <version>12.1.0.2.0</version>
- </dependency> -->
- <dependency>
- <groupId>com.gbase8s</groupId>
- <artifactId>ifxjdbc</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>com.unis.springcloud</groupId>
- <artifactId>common</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.gbase</groupId>
- <artifactId>druid</artifactId>
- <version>1.0.28</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka -->
- <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-netflix-eureka-client -->
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>5.2.17.Final</version>
- </dependency>
- <!-- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc14</artifactId>
- <version>10.2.0.4.0</version>
- </dependency> -->
- <!-- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc14</artifactId>
- <version>10.2.0.4.0</version>
- <scope>runtime</scope>
- </dependency> -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.18</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
- <version>1.2.3</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.2.12</version>
- </dependency>
- <!--<dependency>
- <groupId>tk.mybatis</groupId>
- <artifactId>mapper-spring-boot-starter</artifactId>
- <version>RELEASE</version>
- <exclusions>
- <exclusion>
- <groupId>javax.persistence</groupId>
- <artifactId>persistence-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>-->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.6</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.3.7</version>
- </dependency>
- <!--<dependency>
- <groupId>tk.mybatis</groupId>
- <artifactId>mapper</artifactId>
- <version>4.0.0</version>
- </dependency>-->
- <dependency>
- <groupId>com.unis.springcloud</groupId>
- <artifactId>common</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>javax.persistence</groupId>
- <artifactId>persistence-api</artifactId>
- <version>1.0.2</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>redis.clients</groupId>-->
- <!-- <artifactId>jedis</artifactId>-->
- <!-- <version>4.2.3</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.47</version>
- </dependency>
- </dependencies>
- <build>
- <defaultGoal>compile</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.jusfoun.ydylsz.Starter</mainClass>
- <finalName>tjksh</finalName>
- <!-- <source>${java.version}</source>-->
- <!-- <target>${java.version}</target>-->
- <!-- <encoding>UTF-8</encoding>-->
- <fork>false</fork>
- </configuration>
- </plugin>
- </plugins>
- <finalName>tjksh</finalName>
- </build>
- <!-- 金碟中间件配置 -->
- <profiles>
- <profile>
- <id>tomcat</id>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- </project>
|