-
Notifications
You must be signed in to change notification settings - Fork 18
/
pom.xml
107 lines (102 loc) · 4.21 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2015-2018 Yasumasa Suenaga
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<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>jp.co.ntt.oss.heapstats</groupId>
<artifactId>heapstats</artifactId>
<version>2.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>HeapStats</name>
<description>A lightweight monitoring and analysis tool for the HotSpot JVM</description>
<url>http://icedtea.classpath.org/wiki/HeapStats</url>
<licenses>
<license>
<name>GNU General Public License, version 2</name>
<url>https://www.gnu.org/licenses/gpl-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Yasumasa Suenaga</name>
<email>[email protected]</email>
<organization>icedtea</organization>
<organizationUrl>http://www.icedtea.classpath.org</organizationUrl>
</developer>
<developer>
<name>KUBOTA Yuji</name>
<email>[email protected]</email>
<organization>icedtea</organization>
<organizationUrl>http://www.icedtea.classpath.org</organizationUrl>
</developer>
</developers>
<scm>
<url>http://icedtea.classpath.org/hg/heapstats</url>
<connection>scm:hg:http://icedtea.classpath.org/hg/heapstats</connection>
<developerConnection>scm:hg:ssh://icedtea.classpath.org/hg/heapstats</developerConnection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<modules>
<module>mbean/java</module>
<module>analyzer/core</module>
<module>analyzer/cli</module>
<module>analyzer/plugin-api</module>
<module>analyzer/fx</module>
<module>analyzer/jmx-helper</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<!-- releasing for maven repository, mvn -DperformRelease=true deploy -->
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>