Skip to content
Snippets Groups Projects
pom.xml 3.26 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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>
    	<groupId>cz.it4i.fiji</groupId>
    	<artifactId>haas-java-client</artifactId>
    	<version>0.0.1-SNAPSHOT</version>
    
    Jan Kožusznik's avatar
    Jan Kožusznik committed
    	<name>HaaS library for Java</name>
    
    Jan Kožusznik's avatar
    Jan Kožusznik committed
    	<packaging>jar</packaging>
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-compiler-plugin</artifactId>
    				<version>3.5.1</version>
    				<configuration>
    					<source>1.8</source>
    					<target>1.8</target>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
    	<dependencies>
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>3.8.1</version>
    			<scope>test</scope>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
    		<dependency>
    			<groupId>cz.it4i.fiji</groupId>
    			<artifactId>java-scpclient</artifactId>
    			<version>0.0.1-SNAPSHOT</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/org.apache.axis2/axis2 -->
    
    Jan Kožusznik's avatar
    Jan Kožusznik committed
    		<!-- https://mvnrepository.com/artifact/javax.activation/activation -->
    		<dependency>
    			<groupId>javax.activation</groupId>
    			<artifactId>activation</artifactId>
    			<version>1.1.1</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
    		<dependency>
    			<groupId>javax.mail</groupId>
    			<artifactId>mail</artifactId>
    			<version>1.4.7</version>
    		</dependency>
    
    Jan Kožusznik's avatar
    Jan Kožusznik committed
    		<!-- https://mvnrepository.com/artifact/org.apache.axis/axis -->
    		<dependency>
    			<groupId>org.apache.axis</groupId>
    			<artifactId>axis</artifactId>
    			<version>1.4</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/commons-discovery/commons-discovery -->
    		<dependency>
    			<groupId>commons-discovery</groupId>
    			<artifactId>commons-discovery</artifactId>
    			<version>0.2</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/javax.xml/jaxrpc -->
    		<dependency>
    			<groupId>javax.xml</groupId>
    			<artifactId>jaxrpc</artifactId>
    			<version>1.1</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/javax.xml/saaj-api -->
    		<!-- https://mvnrepository.com/artifact/javax.xml/saaj-api -->
    		<!-- https://mvnrepository.com/artifact/javax.xml.soap/saaj-api -->
    		<dependency>
    			<groupId>javax.xml.soap</groupId>
    			<artifactId>saaj-api</artifactId>
    			<version>1.3.5</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/wsdl4j/wsdl4j -->
    		<dependency>
    			<groupId>wsdl4j</groupId>
    			<artifactId>wsdl4j</artifactId>
    			<version>1.5.1</version>
    		</dependency>
    
    		<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
    		<dependency>
    			<groupId>commons-logging</groupId>
    			<artifactId>commons-logging</artifactId>
    			<version>1.1.1</version>
    		</dependency>
    
    		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
    		<dependency>
    			<groupId>org.slf4j</groupId>
    			<artifactId>slf4j-api</artifactId>
    			<version>1.7.25</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-jdk14 -->
    		<dependency>
    			<groupId>org.slf4j</groupId>
    			<artifactId>slf4j-jdk14</artifactId>
    			<version>1.7.25</version>
    
    Jan Kožusznik's avatar
    Jan Kožusznik committed
    			<optional>true</optional>
    
    Jan Kožusznik's avatar
    Jan Kožusznik committed
    
    	</dependencies>
    </project>