All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.org.jctools.jctools-core.pom.xml Maven / Gradle / Ivy

<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>

	<artifactId>jctools-core</artifactId>
	<groupId>org.jctools</groupId>
	<version>3.1.0</version>
	<name>Java Concurrency Tools Core Library</name>
	<description>Java Concurrency Tools Core Library</description>
	<packaging>bundle</packaging>

	<dependencies>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-all</artifactId>
			<version>${hamcrest.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava-testlib</artifactId>
			<version>${guava-testlib.version}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>3.0.0-M3</version>
				<configuration>
					<includes>
						<include>*</include>
					</includes>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>4.2.1</version>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Import-Package>sun.misc;resolution:=optional</Import-Package>
					</instructions>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>3.2.0</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>3.1.1</version>
				<configuration>
					<additionalOptions>
						<additionalOption>-Xdoclint:none</additionalOption>
					</additionalOptions>
					<source>8</source>
				</configuration>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<distributionManagement>
		<repository>
			<id>bintray-jctools-jctools</id>
			<name>jctools-jctools</name>
			<url>https://api.bintray.com/maven/jctools/jctools/jctools-core/;publish=1</url>
		</repository>
	</distributionManagement>

	<url>https://github.com/JCTools</url>
	<inceptionYear>2013</inceptionYear>

	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<url>https://github.com/JCTools/JCTools</url>
		<connection>scm:git:https://github.com/JCTools/JCTools</connection>
		<tag>HEAD</tag>
	</scm>

	<developers>
		<developer>
			<url>https://github.com/nitsanw</url>
		</developer>
		<developer>
			<url>https://github.com/mjpt777</url>
		</developer>
		<developer>
			<url>https://github.com/RichardWarburton</url>
		</developer>
		<developer>
			<url>https://github.com/kay</url>
		</developer>
		<developer>
			<url>https://github.com/franz1981</url>
		</developer>
	</developers>

	<prerequisites>
		<maven>3.5.0</maven>
	</prerequisites>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java.version>1.6</java.version>
		<java.test.version>1.8</java.test.version>

		<maven.compiler.source>${java.version}</maven.compiler.source>
		<maven.compiler.target>${java.version}</maven.compiler.target>
		<maven.compiler.testSource>${java.test.version}</maven.compiler.testSource>
		<maven.compiler.testTarget>${java.test.version}</maven.compiler.testTarget>

		<hamcrest.version>1.3</hamcrest.version>
		<junit.version>4.12</junit.version>
		<guava-testlib.version>21.0</guava-testlib.version>
	</properties>
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy