background_processing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.litesoft</groupId>
<artifactId>background_processing</artifactId>
<version>1.0.5</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.litesoft</groupId>
<artifactId>background_processing</artifactId>
<version>1.0.5</version>
<packaging>jar</packaging>
<name>background_processing</name>
<description>Library to support long running Background Processes</description>
<url>https://github.com/litesoft-java/BackgroundProcessing</url>
<licenses>
<license>
<name>The Unlicense</name>
<url>https://github.com/litesoft-java/BackgroundProcessing/blob/master/LICENSE</url>
</license>
</licenses>
<organization>
<name>LiteSoft</name>
<url>http://litesoft.org</url>
</organization>
<developers>
<developer>
<name>George Smith</name>
<email>litesoft@gmail.com</email>
<organization>LiteSoft</organization>
<organizationUrl>http://LiteSoft.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/litesoft-java/BackgroundProcessing.git</connection>
<developerConnection>scm:git:ssh://github.com:litesoft-java/BackgroundProcessing.git</developerConnection>
<url>https://github.com/litesoft-java/BackgroundProcessing</url>
</scm>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<dependencies>
<!--suppress VulnerableLibrariesLocal -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.litesoft</groupId>
<artifactId>annotations</artifactId>
<version>[2.1.1,3=4.0)</version>
</dependency>
<dependency>
<groupId>org.litesoft</groupId>
<artifactId>exceptional_functional_interfaces</artifactId>
<version>[1.0,2.0)</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>[5.9.2,6.0)</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>ossrh</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<doclint>-html,-syntax,-accessibility,-missing</doclint>
<failOnError>false</failOnError>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Manually publish from https://oss.sonatype.org/#stagingRepositories -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
</plugin>
</plugins>
</build>
</project>