opsin-inchi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.ac.cam.ch.opsin</groupId> <artifactId>opsin-inchi</artifactId> <version>2.8.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>opsin</artifactId> <groupId>uk.ac.cam.ch.opsin</groupId> <version>2.8.0</version> </parent> <artifactId>opsin-inchi</artifactId> <name>OPSIN InChI Support</name> <description>Adds NameToInchi class for converting names directly to InChIs</description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <outputFile>target/opsin-inchi-${project.version}-jar-with-dependencies.jar</outputFile> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>uk.ac.cam.ch.opsin</groupId> <artifactId>opsin-core</artifactId> </dependency> <dependency> <groupId>io.github.dan2097</groupId> <artifactId>jna-inchi-core</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>