insane
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.netbeans</groupId> <artifactId>insane</artifactId> <version>RELEASE73</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>org.netbeans</groupId> <artifactId>insane</artifactId> <version>RELEASE73</version> <packaging>jar</packaging> <name>INSANE heap profiling library</name> <description>A library for doing live heap analysis of the JVM in which it runs.</description> <url>http://performance.netbeans.org/insane/</url> <licenses> <license> <name>GNU General Public License Version 2</name> <url>https://netbeans.org/cddl-gplv2.html</url> </license> <license> <name>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 </name> <url>https://netbeans.org/cddl-gplv2.html</url> </license> </licenses> <scm> <url>http://hg.netbeans.org/main/file/a60ef93ca284/o.n.insane/</url> <connection>http://hg.netbeans.org/main/file/a60ef93ca284/o.n.insane/</connection> </scm> <developers> <developer> <name>Nenik</name> </developer> </developers> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>truezip-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>copy-into</id> <phase>install</phase> <goals> <goal>copy</goal> </goals> <configuration> <fileset> <directory>${project.build.directory}</directory> <includes> <include>*</include> </includes> <outputDirectory>${archive}</outputDirectory> </fileset> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <archive>${project.build.directory}/${project.build.finalName}-bundle.jar</archive> </properties> </project>