| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?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">
- <parent>
- <artifactId>collector</artifactId>
- <groupId>com.usthe.tancloud</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>server</artifactId>
- <dependencies>
- <!-- spring -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-webflux</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- isolation -->
- <dependency>
- <groupId>com.alipay.sofa</groupId>
- <artifactId>sofa-ark-springboot-starter</artifactId>
- <version>1.1.6</version>
- </dependency>
- <!-- common -->
- <dependency>
- <groupId>com.usthe.tancloud</groupId>
- <artifactId>common</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- etcd -->
- <dependency>
- <groupId>io.etcd</groupId>
- <artifactId>jetcd-core</artifactId>
- <version>0.5.11</version>
- </dependency>
- <!-- kafka -->
- <dependency>
- <groupId>org.apache.kafka</groupId>
- <artifactId>kafka-clients</artifactId>
- <version>3.0.0</version>
- </dependency>
- <!-- http -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.13</version>
- </dependency>
- <!--json path parser-->
- <dependency>
- <groupId>com.jayway.jsonpath</groupId>
- <artifactId>json-path</artifactId>
- <version>2.6.0</version>
- </dependency>
- <!-- lru hashmap -->
- <dependency>
- <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
- <artifactId>concurrentlinkedhashmap-lru</artifactId>
- <version>1.4.2</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>31.0.1-jre</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.8.8</version>
- </dependency>
- <dependency>
- <groupId>com.googlecode.aviator</groupId>
- <artifactId>aviator</artifactId>
- <version>5.2.7</version>
- </dependency>
- <!-- plugins -->
- <dependency>
- <groupId>com.usthe.tancloud</groupId>
- <artifactId>sample-plugin</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.alipay.sofa</groupId>
- <artifactId>sofa-ark-maven-plugin</artifactId>
- <version>1.1.6</version>
- <executions>
- <execution>
- <id>default-cli</id>
- <!--goal executed to generate executable-ark-jar -->
- <goals>
- <goal>repackage</goal>
- </goals>
- <configuration>
- <!--specify destination where executable-ark-jar will be saved, default saved to ${project.build.directory}-->
- <outputDirectory>./target</outputDirectory>
- <!--default none-->
- <arkClassifier>executable</arkClassifier>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|