mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
5.1 KiB
XML
147 lines
5.1 KiB
XML
1 year ago
|
<?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>arthas-all</artifactId>
|
||
|
<groupId>com.taobao.arthas</groupId>
|
||
|
<version>${revision}</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>arthas-grpc-web-proxy</artifactId>
|
||
|
<name>arthas-grpc-web-proxy</name>
|
||
|
<url>https://github.com/alibaba/arthas</url>
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<grpc.version>1.46.0</grpc.version>
|
||
|
</properties>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.grpc</groupId>
|
||
|
<artifactId>grpc-bom</artifactId>
|
||
|
<version>${grpc.version}</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-codec-http</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.arthas</groupId>
|
||
|
<artifactId>arthas-repackage-logger</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.grpc</groupId>
|
||
|
<artifactId>grpc-netty</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.grpc</groupId>
|
||
|
<artifactId>grpc-services</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.annotation</groupId>
|
||
|
<artifactId>javax.annotation-api</artifactId>
|
||
|
<version>1.3.2</version>
|
||
|
<scope>provided</scope>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-core</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.vintage</groupId>
|
||
|
<artifactId>junit-vintage-engine</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpmime</artifactId>
|
||
|
<version>4.5.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.taobao.arthas</groupId>
|
||
|
<artifactId>arthas-common</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.taobao.arthas</groupId>
|
||
|
<artifactId>arthas-common</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>mac</id>
|
||
|
<activation>
|
||
|
<os>
|
||
|
<family>mac</family>
|
||
|
</os>
|
||
|
</activation>
|
||
|
<properties>
|
||
|
<os.detected.classifier>osx-x86_64</os.detected.classifier>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
<extensions>
|
||
|
<extension>
|
||
|
<groupId>kr.motd.maven</groupId>
|
||
|
<artifactId>os-maven-plugin</artifactId>
|
||
|
<version>1.6.2</version>
|
||
|
</extension>
|
||
|
</extensions>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.xolstice.maven.plugins</groupId>
|
||
|
<artifactId>protobuf-maven-plugin</artifactId>
|
||
|
<version>0.6.1</version>
|
||
|
<configuration>
|
||
|
<protoSourceRoot>${basedir}/src/main/proto</protoSourceRoot>
|
||
|
<protocArtifact>com.google.protobuf:protoc:3.11.0:exe:${os.detected.classifier}</protocArtifact>
|
||
|
<pluginId>grpc-java</pluginId>
|
||
|
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.28.0:exe:${os.detected.classifier}</pluginArtifact>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>test-compile</goal>
|
||
|
<goal>test-compile-custom</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
</project>
|