<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> <groupId>cz.it4i.fiji</groupId> <artifactId>haas-parent</artifactId> <version>0.0.1-SNAPSHOT</version> <relativePath> ../haas-parent/pom.xml</relativePath> </parent> <artifactId>haas-spim-benchmark</artifactId> <packaging>jar</packaging> <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> <organization> <name>${organization.name}</name> <url>${organization.url}</url> </organization> <licenses> <license> <name>${license.name}</name> <url>${license.url}</url> <distribution>${license.distribution}</distribution> </license> </licenses> <developers> <developer> <id>koz01</id> <name>Jan Kožusznik</name> <url>http://www.kozusznik.cz</url> </developer> </developers> <contributors> <contributor> <name>None</name> </contributor> </contributors> <mailingLists> <mailingList> <name>ImageJ Forum</name> <archive>http://forum.imagej.net/</archive> </mailingList> </mailingLists> <scm> <connection>${scm.connection}</connection> <developerConnection>${scm.developerConnection}</developerConnection> <tag>${scm.tag}</tag> <url>${scm.url}</url> </scm> <issueManagement> <system>${issueManagement.system}</system> <url>${issueManagement.url}</url> </issueManagement> <ciManagement> <system>None</system> </ciManagement> <properties> <license.licenseName>${license.base.licenseName}</license.licenseName> <license.copyrightOwners>${license.base.copyrightOwners}</license.copyrightOwners> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>net.imagej</groupId> <artifactId>imagej</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>cz.it4i.fiji</groupId> <artifactId>haas-imagej-client</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-jdk14 --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <outputDirectory> ${project.build.directory}/jars </outputDirectory> </configuration> </plugin> </plugins> </build> </project>