chemdraw-converter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.blueobelisk</groupId> <artifactId>chemdraw-converter</artifactId> <version>0.5</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.blueobelisk</groupId> <artifactId>chemdraw-converter</artifactId> <version>0.5</version> <packaging>jar</packaging> <name>Chemdraw-converters</name> <description>Converts CDX and CDXML from and to CML</description> <inceptionYear>2001</inceptionYear> <url>http://www.xml-cml.org/</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/BlueObelisk/chemdraw-converter</url> <connection>scm:git:git://github.com/blueobelisk/chemdraw-converter.git</connection> <developerConnection>scm:git:ssh://git@github.com/blueobelisk/chemdraw-converter.git</developerConnection> <tag>HEAD</tag> </scm> <developers> <developer> <id>jimdowning</id> <name>Jim Downing</name> </developer> <developer> <id>pm286</id> <name>Peter Murray-Rust</name> </developer> <developer> <name>Oliver Stueker</name> </developer> </developers> <properties> <chemdraw.groupId>org.xml-cml.chemdraw</chemdraw.groupId> <junit.groupId>junit</junit.groupId> <junit.artifactId>junit</junit.artifactId> <junit.version>4.13.2</junit.version> <cmlxom.version>4.8</cmlxom.version> </properties> <build> <finalName>chemdraw-converter</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.2.5</version> </requireMavenVersion> <requireJavaVersion> <version>1.8</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.6.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies </descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.xmlcml.cml.chemdraw.ChemdrawConverter </mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.12.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> <configuration> <excludes> <exclude>org/xmlcml/util/TestUtils.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> <configuration> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.11</version> <executions> <execution> <id>start-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>generate-report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.blueobelisk</groupId> <artifactId>cmlxom</artifactId> <version>${cmlxom.version}</version> </dependency> <dependency> <groupId>${junit.groupId}</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-1.2-api</artifactId> <version>2.22.1</version> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin </artifactId> <version>3.5.0</version> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>project-team</report> <report>license</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>