leet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tech.molecules</groupId>
<artifactId>leet</artifactId>
<version>0.0.11</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Generated from archetype; please customize.
-->
<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>tech.molecules</groupId>
<artifactId>leet</artifactId>
<packaging>pom</packaging>
<name>leet-chem</name>
<version>0.0.11</version>
<description>A software library providing cheminformatics and computational chemistry tools and workflows.</description>
<url>https://github.com/lithom/leet-chem</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>8</maven.compiler.release>
<!--<revision>0.0.8</revision>-->
<hyperspace.version>2.2.6-SNAPSHOT</hyperspace.version>
</properties>
<developers>
<developer>
<name>Thomas Liphardt</name>
<email>liphardtt@gmail.com</email>
<organization>Idorsia Pharmaceuticals Ltd.</organization>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<modules>
<module>leet-chem-core</module>
<module>leet-chem-coredb</module>
<module>leet-chem-dataimport</module>
<module>leet-chem-table</module>
<module>leet-chem-injector</module>
<module>leet-chem-nucleus</module>
<!--<module>external-umap-java</module>-->
<module>leet-chem-deeplearning</module>
<module>leet-chem-tablemodel</module>
<module>leet-chem-swingtable</module>
<module>leet-chem-coredb-analytics</module>
<module>leet-chem-gui-tools</module>
<module>leet-chem-outofmemory-core</module>
<module>leet-chem-virtualspaces-core</module>
<module>leet-chem-vs-core</module>
<module>leet-batch-core</module>
<module>leet-commons</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.actelion.research</groupId>
<artifactId>openchemlib</artifactId>
<!--<version>2023.7.4</version>-->
<version>2024.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.idorsia.research</groupId>
<artifactId>openchemlib-hyperspace-core</artifactId>
<version>${hyperspace.version}</version><!--<version>${revision}</version>-->
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.idorsia.research</groupId>
<artifactId>openchemlib-hyperspace-tools</artifactId>
<version>${hyperspace.version}</version><!--<version>${revision}</version>-->
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.2.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<!-- <plugin> <!– this will set the version of all child modules to the version specified in the parent pom.–>-->
<!-- <groupId>org.codehaus.mojo</groupId>-->
<!-- <artifactId>flatten-maven-plugin</artifactId>-->
<!-- <version>1.2.7</version>-->
<!-- <configuration>-->
<!-- <flattenMode>ossrh</flattenMode>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>flatten</id>-->
<!-- <phase>process-resources</phase>-->
<!-- <goals>-->
<!-- <goal>flatten</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!--only excluded because intellij maven problem-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.14</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<stagingProfileId>c949b3be63047</stagingProfileId>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:git://github.com/lithom/leet-chem.git</connection>
<developerConnection>scm:git:ssh://github.com:lithom/leet-chem.git</developerConnection>
<url>https://github.com/lithom/leet-chem</url>
</scm>
<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>