123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-executor</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>superdesk-uniorder-executor-instance</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!-- Dubbo Spring Boot Starter -->
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba.boot</groupId>-->
- <!-- <artifactId>dubbo-spring-boot-starter</artifactId>-->
- <!-- <version>0.2.1.RELEASE</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.alibaba</groupId>-->
- <!-- <artifactId>dubbo</artifactId>-->
- <!-- <version>${dubbo.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>${druid.version}</version>
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>com.alibaba</groupId>-->
- <!-- <artifactId>tools</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- </dependency>
- <!-- druid -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>1.1.21</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- pagehelper -->
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.2.3</version>
- </dependency>
- <!-- kafka -->
- <dependency>
- <groupId>org.springframework.kafka</groupId>
- <artifactId>spring-kafka</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-executor-scheduler-kafka</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-executor-scheduler-kafka-constants</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-executor-scheduler-xxl-job</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-executor-scheduler-xxl-job-constants</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <!-- 本地开发环境 -->
- <id>dev</id>
- <properties>
- <profiles.active>dev</profiles.active>
- </properties>
- <!--默认启用的是dev环境配置-->
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <!-- 测试环境 -->
- <id>test</id>
- <properties>
- <profiles.active>test</profiles.active>
- </properties>
- </profile>
- <profile>
- <!-- UAT环境 -->
- <id>uat</id>
- <properties>
- <profiles.active>uat</profiles.active>
- </properties>
- </profile>
- <profile>
- <!-- 生产环境 -->
- <id>prod</id>
- <properties>
- <profiles.active>prod</profiles.active>
- </properties>
- </profile>
- <profile>
- <!-- 生产环境 侨城汇 -->
- <id>qch</id>
- <properties>
- <profiles.active>qch</profiles.active>
- </properties>
- </profile>
- </profiles>
- <build>
- <!-- <finalName>${project.artifactId}</finalName>-->
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|