mirror of
https://gitee.com/arthas/arthas.git
synced 2024-11-30 03:07:37 +08:00
139 lines
5.2 KiB
XML
139 lines
5.2 KiB
XML
<?xml version="1.0"?>
|
|
<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.taobao.arthas</groupId>
|
|
<artifactId>arthas-all</artifactId>
|
|
<version>3.0.5-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>arthas-core</artifactId>
|
|
<name>arthas-core</name>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>in-project</id>
|
|
<name>In Project Repo</name>
|
|
<url>file://${project.basedir}/../lib</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<build>
|
|
<finalName>arthas-core</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
<encoding>UTF-8</encoding>
|
|
<showDeprecation>true</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.taobao.arthas.core.Arthas</mainClass>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<Created-By>core engine team, middleware group, alibaba inc.</Created-By>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
<Implementation-Vendor-Id>com.taobao.arthas</Implementation-Vendor-Id>
|
|
<Specification-Version>${project.version}</Specification-Version>
|
|
<Specification-Title>arthas-core</Specification-Title>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ow2.asm</groupId>
|
|
<artifactId>asm-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.middleware</groupId>
|
|
<artifactId>termd-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.middleware</groupId>
|
|
<artifactId>cli</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.taobao.text</groupId>
|
|
<artifactId>text-ui</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fifesoft</groupId>
|
|
<artifactId>rsyntaxtextarea</artifactId>
|
|
</dependency>
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.codehaus.groovy</groupId>-->
|
|
<!--<artifactId>groovy-all</artifactId>-->
|
|
<!--</dependency>-->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.taobao.middleware</groupId>
|
|
<artifactId>logger.api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ognl</groupId>
|
|
<artifactId>ognl</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.benf</groupId>
|
|
<artifactId>cfr</artifactId>
|
|
<version>0.132</version>
|
|
</dependency>
|
|
<!-- for com.sun.tools.attach.VirtualMachine api, do not package into fat jar -->
|
|
<dependency>
|
|
<groupId>org.powermock</groupId>
|
|
<artifactId>powermock-module-javaagent</artifactId>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|