| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| <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/xsd/maven-4.0.0.xsd"> |
| <parent> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-gfac</artifactId> |
| <version>0.17</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>airavata-gfac-impl</artifactId> |
| <name>Airavata GFac Implementation</name> |
| <description>This is the extension of GFAC Local.</description> |
| <url>http://airavata.apache.org/</url> |
| |
| <dependencies> |
| |
| <!-- Logging --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| |
| <!-- GFAC schemas --> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-gfac-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jglobus</groupId> |
| <artifactId>gss</artifactId> |
| <version>${jglobus.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.jglobus</groupId> |
| <artifactId>myproxy</artifactId> |
| <version>${jglobus.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.jcraft</groupId> |
| <artifactId>jsch</artifactId> |
| <version>0.1.53</version> |
| </dependency> |
| <dependency> |
| <groupId>net.schmizz</groupId> |
| <artifactId>sshj</artifactId> |
| <version>0.6.1</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.ethz.ganymed</groupId> |
| <artifactId>ganymed-ssh2</artifactId> |
| <version>262</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| <version>2.4.4</version> |
| </dependency> |
| |
| <!-- Test --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.testng</groupId> |
| <artifactId>testng</artifactId> |
| <version>6.1.1</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>eu.unicore</groupId> |
| <artifactId>unicore-client-wrapper</artifactId> |
| <version>1.7.2_1</version> |
| <exclusions> |
| <!-- <exclusion> |
| <groupId>org.apache.santuario</groupId> |
| <artifactId>xmlsec</artifactId> |
| </exclusion> --> |
| <exclusion> |
| <groupId>net.sf.saxon</groupId> |
| <artifactId>saxon</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>net.sf.saxon</groupId> |
| <artifactId>saxon-dom</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>net.sf.saxon</groupId> |
| <artifactId>saxon-xpath</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>net.sf.saxon</groupId> |
| <artifactId>Saxon-HE</artifactId> |
| <version>9.6.0-1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-httpclient</groupId> |
| <artifactId>commons-httpclient</artifactId> |
| <version>3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>aurora-client</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| </project> |