Skip to content
Snippets Groups Projects
pom.xml 2.99 KiB
Newer Older
Jan Kožusznik's avatar
Jan Kožusznik committed
<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>
	<parent>
Jan Kožusznik's avatar
Jan Kožusznik committed
		<groupId>cz.it4i.fiji</groupId>
		<artifactId>haas-parent</artifactId>
		<version>0.0.1-SNAPSHOT</version>
		<relativePath> ../haas-parent/pom.xml</relativePath>
Jan Kožusznik's avatar
Jan Kožusznik committed
	</parent>
	<artifactId>haas-spim-benchmark</artifactId>
	<packaging>jar</packaging>
Jan Kožusznik's avatar
Jan Kožusznik committed
	<name>HaaS benchmark of SPIM</name>
	<url>${project_url}</url>
	<description>Plugin for benchmarking SPIM automated workflow and starting by IT4I HaaS.</description>
	<inceptionYear>2018</inceptionYear>
Jan Kožusznik's avatar
Jan Kožusznik committed
	<organization>
Jan Kožusznik's avatar
Jan Kožusznik committed
		<name>${organization.name}</name>
		<url>${organization.url}</url>
Jan Kožusznik's avatar
Jan Kožusznik committed
	</organization>
	<licenses>
		<license>
Jan Kožusznik's avatar
Jan Kožusznik committed
			<name>${license.name}</name>
			<url>${license.url}</url>
			<distribution>${license.distribution}</distribution>
Jan Kožusznik's avatar
Jan Kožusznik committed
		</license>
	</licenses>

	<developers>
		<developer>
Jan Kožusznik's avatar
Jan Kožusznik committed
			<id>koz01</id>
			<name>Jan Kožusznik</name>
			<url>http://www.kozusznik.cz</url>
Jan Kožusznik's avatar
Jan Kožusznik committed
		</developer>
	</developers>
	<contributors>
		<contributor>
			<name>None</name>
		</contributor>
	</contributors>

	<mailingLists>
		<mailingList>
			<name>ImageJ Forum</name>
			<archive>http://forum.imagej.net/</archive>
		</mailingList>
	</mailingLists>

	<scm>
Jan Kožusznik's avatar
Jan Kožusznik committed
		<connection>${scm.connection}</connection>
		<developerConnection>${scm.developerConnection}</developerConnection>
		<tag>${scm.tag}</tag>
		<url>${scm.url}</url>
Jan Kožusznik's avatar
Jan Kožusznik committed
	</scm>
	<issueManagement>
Jan Kožusznik's avatar
Jan Kožusznik committed
		<system>${issueManagement.system}</system>
		<url>${issueManagement.url}</url>
Jan Kožusznik's avatar
Jan Kožusznik committed
	</issueManagement>
	<ciManagement>
		<system>None</system>
	</ciManagement>

Jan Kožusznik's avatar
Jan Kožusznik committed
	
Jan Kožusznik's avatar
Jan Kožusznik committed
	<properties>
		<license.licenseName>${license.base.licenseName}</license.licenseName>
		<license.copyrightOwners>${license.base.copyrightOwners}</license.copyrightOwners>
Jan Kožusznik's avatar
Jan Kožusznik committed
	</properties>
Jan Kožusznik's avatar
Jan Kožusznik committed
	
Jan Kožusznik's avatar
Jan Kožusznik committed
	<dependencies>
		<dependency>
			<groupId>net.imagej</groupId>
			<artifactId>imagej</artifactId>
Jan Kožusznik's avatar
Jan Kožusznik committed
			<scope>provided</scope>
Jan Kožusznik's avatar
Jan Kožusznik committed
		</dependency>
Jan Kožusznik's avatar
Jan Kožusznik committed

Jan Kožusznik's avatar
Jan Kožusznik committed
		<dependency>
			<groupId>cz.it4i.fiji</groupId>
			<artifactId>haas-imagej-client</artifactId>
			<version>0.0.1-SNAPSHOT</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
Jan Kožusznik's avatar
Jan Kožusznik committed
			<scope>provided</scope>
Jan Kožusznik's avatar
Jan Kožusznik committed
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-jdk14 -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-simple</artifactId>
Jan Kožusznik's avatar
Jan Kožusznik committed
			<scope>provided</scope>
Jan Kožusznik's avatar
Jan Kožusznik committed
		</dependency>
	</dependencies>
Jan Kožusznik's avatar
Jan Kožusznik committed

Jan Kožusznik's avatar
Jan Kožusznik committed
	<build>
Jan Kožusznik's avatar
Jan Kožusznik committed
		<plugins>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<configuration>
					<descriptorRefs>
						<descriptorRef>jar-with-dependencies</descriptorRef>
					</descriptorRefs>
				</configuration>
				<executions>
					<execution>
						<id>make-assembly</id>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

		</plugins>
Jan Kožusznik's avatar
Jan Kožusznik committed
	</build>
</project>