indigo-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bitbucket.kienerj</groupId> <artifactId>indigo-utils</artifactId> <version>1.1.1</version> </dependency>
<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>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.bitbucket.kienerj</groupId> <artifactId>indigo-utils</artifactId> <version>1.1.1</version> <packaging>jar</packaging> <name>indigo-utils</name> <description>Adds missing functionality to the Indigo Chemistry Toolkit. </description> <url>https://bitbucket.org/kienerj/indigo-utils/overview</url> <developers> <developer> <id>kienerj</id> <name>Joos Kiener</name> <email>joos.kiener@gmail.com</email> </developer> </developers> <scm> <connection>scm:hg:http://bitbucket.org/kienerj/indigo-utils</connection> <developerConnection>scm:hg:https://bitbucket.org/kienerj/indigo-utils</developerConnection> <url>http://bitbucket.org/kienerj/indigo-utils/src</url> <tag>1.1.1</tag> </scm> <licenses> <license> <name>GPLv3</name> <url>http://www.gnu.org/licenses/gpl-3.0.txt</url> <distribution>repo</distribution> <comments>GNU GENERAL PUBLIC LICENSE Version 3</comments> </license> </licenses> <repositories /> <pluginRepositories /> <profiles> <profile> <id>release-sign-artifacts</id> <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.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> <!-- <docletPath>/path/to/UmlGraph.jar</docletPath> --> <docletArtifact> <groupId>org.umlgraph</groupId> <artifactId>umlgraph</artifactId> <version>5.6.6</version> </docletArtifact> <additionalparam>-inferrel -inferdepinpackage -hide java.* -hide javax.* -hide com.mysema.* -collpackages java.util.* -postfixpackage -views </additionalparam> <useStandardDocletOptions>true</useStandardDocletOptions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>${project.build.sourceEncoding}</encoding> <showDeprecation>true</showDeprecation> </configuration> </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-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifestEntries> <Mercurial-Revision>${changeSet}</Mercurial-Revision> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <phase>validate</phase> <goals> <goal>hgchangeset</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.1</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <netbeans.hint.license>gpl30</netbeans.hint.license> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>0.12.0</version> <type>jar</type> </dependency> <dependency> <groupId>com.ggasoftware</groupId> <artifactId>indigo</artifactId> <version>1.1.12</version> <type>jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-ext</artifactId> <version>1.7.6</version> <type>jar</type> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.1</version> <scope>test</scope> </dependency> </dependencies> </project>