123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?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>org.sunwin</groupId>
- <artifactId>sunwin_metro</artifactId>
- <packaging>pom</packaging>
- <version>1.0-SNAPSHOT</version>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.0.RELEASE</version>
- <relativePath/>
- </parent>
- <modules>
- <module>flink_metro</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.25</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.73</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.10</version>
- </dependency>
- <dependency>
- <groupId>com.chinaway</groupId>
- <artifactId>sw-http-client</artifactId>
- <version>1.1-test</version>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>local</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <property>
- <name>env</name>
- <value>Env</value>
- </property>
- </activation>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources/local</directory>
- </resource>
- </resources>
- </build>
- </profile>
- <profile>
- <id>pro</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>pro</name>
- <value>Pro</value>
- </property>
- </activation>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources/pro</directory>
- </resource>
- </resources>
- </build>
- </profile>
- <profile>
- <id>test</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>test</name>
- <value>Test</value>
- </property>
- </activation>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources/test</directory>
- </resource>
- </resources>
- </build>
- </profile>
- </profiles>
- </project>
|