executioner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.cernoch</groupId>
<artifactId>executioner</artifactId>
<version>3.2.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.cernoch</groupId>
<artifactId>executioner</artifactId>
<version>3.2.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<inceptionYear>2014</inceptionYear>
<description>Parallel execution tools. On top of java.util.concurrent
this provides checked exception handling (forget ExecutionException),
and stack manipulators for comfortable debugging. Also we provide
routines that simulate execution on CPUs with arbitrary number of
cores, which is handy for benchmarking.</description>
<url>https://github.com/cernoch/executioner</url>
<properties>
<netbeans.hint.license>mit</netbeans.hint.license>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses><license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license></licenses>
<developers>
<developer>
<name>Radomír Černoch</name>
<email>radomir.cernoch@gmail.com</email>
<organization>Czech Technical University in Prague</organization>
<organizationUrl>http://www.cvut.cz</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/cernoch/executioner.git</connection>
<developerConnection>scm:git:ssh://git@github.com:cernoch/executioner.git</developerConnection>
<url>https://github.com/cernoch/executioner</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<repositories>
<repository><id>ida</id><!-- IDA CVUT repository -->
<url>http://ida.fel.cvut.cz/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin><!-- Compile using Java 17 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>17</source><target>17</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin><!-- Sources attached -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions><execution>
<goals><goal>jar</goal></goals>
</execution></executions>
</plugin>
<plugin><!-- Generate JavaDoc -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<docfilessubdirs>true</docfilessubdirs>
<windowtitle><![CDATA[Executioner v${project.version}]]></windowtitle>
<doctitle><![CDATA[Executioner v${project.version}]]></doctitle>
</configuration>
<executions><execution>
<goals><goal>jar</goal></goals>
</execution></executions>
</plugin>
<plugin><!-- GPG sign artifacts. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions><execution>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution></executions>
</plugin>
</plugins>
<extensions>
<extension><!-- Enabling the use of sFTP -->
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>2.6</version>
</extension>
</extensions>
</build>
</project>