123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?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.ywt</groupId>
- <artifactId>ywt-platform-glasses-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>ywt-platform-glasses-sdk</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.ywt</groupId>
- <artifactId>ywt-platform-glasses-base</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ywt</groupId>
- <artifactId>ywt-platform-order-base</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ywt</groupId>
- <artifactId>ywt-platform-msg-base</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ywt</groupId>
- <artifactId>ywt-platform-glasses-common</artifactId>
- </dependency>
- <!-- 自动装配dubbo-->
- <dependency>
- <groupId>org.apache.dubbo</groupId>
- <artifactId>dubbo-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.dubbo</groupId>
- <artifactId>dubbo-registry-nacos</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java-util</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.apache.commons</groupId>-->
- <!-- <artifactId>commons-csv</artifactId>-->
- <!-- </dependency>-->
- </dependencies>
- <profiles>
- <profile>
- <id>dev</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <active.profile>dev</active.profile>
- </properties>
- </profile>
- <profile>
- <id>test</id>
- <properties>
- <active.profile>test</active.profile>
- </properties>
- </profile>
- <profile>
- <id>product</id>
- <properties>
- <active.profile>product</active.profile>
- </properties>
- </profile>
- <profile>
- <id>preproduct</id>
- <properties>
- <active.profile>preproduct</active.profile>
- </properties>
- </profile>
- </profiles>
- <build>
- <filters>
- <filter>config_fillters/filters-${active.profile}.properties</filter>
- </filters>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <!-- <version>3.2</version>-->
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <encoding>utf-8</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|