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.
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
7 years ago
|
<?xml version="1.0"?>
|
||
|
<project
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.taobao.arthas</groupId>
|
||
|
<artifactId>arthas-all</artifactId>
|
||
|
<version>3.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>arthas-site</artifactId>
|
||
|
<name>arthas-site</name>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>kr.motd.maven</groupId>
|
||
|
<artifactId>sphinx-maven-plugin</artifactId>
|
||
|
<version>2.2.3</version>
|
||
|
<configuration>
|
||
|
<asReport>true</asReport>
|
||
|
<name>Project documentation</name>
|
||
|
<description>Documentation about Arthas</description>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>generate</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|