cpsign-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.arosbio</groupId> <artifactId>cpsign-api</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) Aros Bio AB. CPSign is an Open Source Software that is dual licensed to allow you to choose a license that best suits your requirements: 1) GPLv3 (GNU General Public License Version 3) with Additional Terms, including an attribution clause as well as a limitation to use the software for commercial purposes. 2) CPSign Proprietary License that allows you to use CPSign for commercial activities, such as in a revenue-generating operation or environment, or integrate CPSign in your proprietary software without worrying about disclosing the source code of your proprietary software, which is required if you choose to use the software under GPLv3 license. See arosbio.com/cpsign/commercial-license for details. --> <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>com.arosbio</groupId> <artifactId>parent</artifactId> <version>2.0.0</version> </parent> <artifactId>cpsign-api</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>The API version of CPSign, adding chemistry functionallity but without the inclusion of CLI depedent code.</description> <packaging>jar</packaging> <properties> <parent.basedir>${project.basedir}/..</parent.basedir> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> </resource> <resource> <directory>${parent.basedir}/license</directory> <filtering>false</filtering> </resource> </resources> <plugins> <!-- For testing --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> <executions> <!-- UNIT TESTS --> <execution> <id>unit</id> <goals> <goal>test</goal> </goals> <configuration> <groups>${test.pkg}.UnitTest</groups> <excludedGroups>${test.pkg}.SlowTest,${test.pkg}.NonSuiteTest,${test.pkg}.PerformanceTest</excludedGroups> <skip>${maven.test.skip}</skip> </configuration> </execution> </executions> <!-- General config --> <configuration> <skip>true</skip> <failIfNoTests>false</failIfNoTests> <reuseForks>false</reuseForks> <forkCount>1</forkCount> <argLine>-Xmx2048m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.openscience.cdk</groupId> <artifactId>cdk-bundle</artifactId> </dependency> <dependency> <groupId>com.arosbio</groupId> <artifactId>depict</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.beryx</groupId> <artifactId>awt-color-factory</artifactId> </dependency> <dependency> <groupId>com.arosbio</groupId> <artifactId>confai</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.arosbio</groupId> <artifactId>test-utils</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.arosbio</groupId> <artifactId>confai</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> </project>