cdk-bundle
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openscience.cdk</groupId> <artifactId>cdk-bundle</artifactId> <version>2.10</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/maven-v4_0_0.xsd"> <parent> <artifactId>cdk</artifactId> <groupId>org.openscience.cdk</groupId> <version>2.10</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cdk-bundle</artifactId> <name>cdk-bundle</name> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <finalName>cdk-${project.parent.version}</finalName> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </plugin> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.11</version> <executions> <execution> <phase>package</phase> <goals> <goal>artifacts</goal> </goals> </execution> </executions> <configuration> <algorithms> <algorithm>SHA-256</algorithm> <algorithm>SHA-512</algorithm> <algorithm>SHA3-512</algorithm> </algorithms> <csvSummary>false</csvSummary> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> <include>cdk-${project.parent.version}.jar</include> </includes> </fileSet> </fileSets> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>jdk11-plus</id> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>cdk-iordf</artifactId> <version>${project.parent.version}</version> </dependency> </dependencies> </profile> <profile> <id>jacoco</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>aggregate-report</id> <phase>verify</phase> <goals> <goal>report-aggregate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>