MAYGEN
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.javadev</groupId>
<artifactId>MAYGEN</artifactId>
<version>1.8</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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.javadev</groupId>
<artifactId>MAYGEN</artifactId>
<packaging>jar</packaging>
<version>1.8</version>
<name>MAYGEN</name>
<description>A chemical structure generator for constitutional isomers based on the orderly generation principle</description>
<url>https://github.com/MehmetAzizYirik/MAYGEN</url>
<developers>
<developer>
<id>MehmetAzizYirik</id>
<name>Mehmet Aziz Yirik</name>
</developer>
<developer>
<id>steinbeck</id>
<name>Christoph Steinbeck</name>
</developer>
<developer>
<id>mSorok</id>
<name>Maria Sorokina</name>
</developer>
<developer>
<id>javadev</id>
<name>Valentyn Kolesnikov</name>
</developer>
</developers>
<licenses>
<license>
<name>The MIT License</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/MehmetAzizYirik/MAYGEN.git</connection>
<developerConnection>scm:git:git://github.com/MehmetAzizYirik/MAYGEN.git</developerConnection>
<url>https://github.com/MehmetAzizYirik/MAYGEN</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/MehmetAzizYirik/MAYGEN/actions</url>
</ciManagement>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/MehmetAzizYirik/MAYGEN/issues</url>
</issueManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>MAYGEN</Automatic-Module-Name>
<Main-Class>MAYGEN.MAYGEN</Main-Class>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[4.13.2,)</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>[1.4,)</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>[3.12.0,)</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openscience.cdk/cdk-group -->
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-group</artifactId>
<version>[2.5,)</version>
</dependency>
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-pdb</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-sdg</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-data</artifactId>
<version>[2.5,)</version>
</dependency>
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-smiles</artifactId>
<version>[2.5,)</version>
</dependency>
</dependencies>
</project>