gearman-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.wikimedia.gearman</groupId>
<artifactId>gearman-java</artifactId>
<version>0.10</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/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.wikimedia.gearman</groupId>
<artifactId>gearman-java</artifactId>
<packaging>jar</packaging>
<name>gearman-java Wikimedia fork</name>
<version>0.10</version>
<description>
A java based implementation of the Gearman client and worker.
Wikimedia fork of org.german.gearman-java 0.7.
</description>
<url>http://launchpad.net/gearman-java/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<developerConnection>scm:git:ssh://${user.name}@gerrit.wikimedia.org:29418/integration/gearman-java</developerConnection>
<tagNameFormat>wmf/@{project.artifactId}-@{project.version}</tagNameFormat>
</properties>
<licenses>
<license>
<name>BSD</name>
<url>http://www.linfo.org/bsdlicense.html</url>
<distribution>repo</distribution>
</license>
<license>
<name>LGPL 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1-standalone.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>scm:git:https://gerrit.wikimedia.org/r/p/integration/gearman-java</url>
<connection>scm:git:https://gerrit.wikimedia.org/r/p/integration/gearman-java</connection>
<!--
We point to an user property to make it possible to override the remote
SCM in CI. Namely CI pushes over https when developers typically use ssh.
-->
<developerConnection>${developerConnection}</developerConnection>
<tag>wmf/gearman-java-0.10</tag>
</scm>
<developers>
<developer>
<id>hashar</id>
<name>Antoine Musso</name>
<email>hashar@free.fr</email>
<roles>
<role>Wikimedia fork maintainer</role>
</roles>
<timezone>Europe/Paris</timezone>
</developer>
<developer>
<id>elambert</id>
<name>Eric Lambert</name>
<email>eric.d.lambert@gmail.com</email>
<roles>
<role>Original developer</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<!-- See https://wikitech.wikimedia.org/wiki/Archiva -->
<repositories>
<!-- disable Maven central -->
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>wikimedia.mirrored</id>
<name>Wikimedia Mirrored Repository</name>
<url>https://archiva.wikimedia.org/repository/mirrored</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>wikimedia.releases</id>
<name>Wikimedia Release Repository</name>
<url>https://archiva.wikimedia.org/repository/releases</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>wikimedia.snaphots</id>
<name>Wikimedia Snapshot Repository</name>
<url>https://archiva.wikimedia.org/repository/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!-- disable Maven central -->
<pluginRepository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>wikimedia.mirrored</id>
<name>Wikimedia Mirrored Repository</name>
<url>https://archiva.wikimedia.org/repository/mirrored/</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>archiva.releases</id>
<name>Wikimedia Release Repository</name>
<url>https://archiva.wikimedia.org/repository/releases/</url>
</repository>
<snapshotRepository>
<id>archiva.snapshots</id>
<name>Wikimedia Snapshot Repository</name>
<url>https://archiva.wikimedia.org/repository/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>jdk-8-config</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
</properties>
</profile>
<profile>
<id>jdk-11-config</id>
<activation>
<jdk>11</jdk>
</activation>
<properties>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
</properties>
</profile>
<profile>
<id>jdk-9-or-later</id>
<activation>
<jdk>[1.9,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!--
Prevent injecting java9+ java.* or javax.* when we target Java 8
-->
<release>8</release>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</version>
<executions>
<execution>
<id>jacoco-prepare</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<tagNameFormat>${tagNameFormat}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.30</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.6</version>
<configuration>
<configLocation>gearman-java-checkstyle.xml</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<reportSets>
<!--
To avoid an empty aggregate report, explicitly list
reports to collect.
-->
<reportSet>
<reports>
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<targetJdk>1.6</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<configuration>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
</project>