| <?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/maven-v4_0_0.xsd"> |
| |
| <parent> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata</artifactId> |
| <version>0.17-SNAPSHOT</version> |
| <relativePath>../../pom.xml</relativePath> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>airavata-xbaya-gui</artifactId> |
| <packaging>jar</packaging> |
| <name>Airavata XBaya</name> |
| <url>http://airavata.apache.org/</url> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>restore-persistence</id> |
| <phase>prepare-package</phase> |
| <configuration> |
| <tasks> |
| <copy file="${project.build.outputDirectory}/services.xml" tofile="${project.build.outputDirectory}/META-INF/services.xml" /> |
| <copy file="src/main/resources/WorkflowInterpretor.wsdl" tofile="${project.build.outputDirectory}/META-INF/service.wsdl" /> |
| </tasks> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-dependencies</id> |
| <phase>process-resources</phase> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${basedir}/target/jnlp/lib</outputDirectory> |
| <overWriteReleases>false</overWriteReleases> |
| <overWriteSnapshots>true</overWriteSnapshots> |
| <excludeTransitive>false</excludeTransitive> |
| </configuration> |
| </execution> |
| <!--execution> |
| <id>unpack-dependencies</id> |
| <phase>compile</phase> |
| <goals> |
| <goal>unpack</goal> |
| </goals> |
| <configuration> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>apache-airavata-samples</artifactId> |
| <type>zip</type> |
| <outputDirectory>${project.build.directory}/samples</outputDirectory> |
| </artifactItem> |
| </artifactItems> |
| </configuration> |
| </execution--> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <!--dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>apache-airavata-samples</artifactId> |
| <version>${project.version}</version> |
| <type>zip</type> |
| <optional>true</optional> |
| </dependency--> |
| |
| <dependency> |
| <groupId>org.ogce</groupId> |
| <artifactId>xpp3</artifactId> |
| <version>${xpp3.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ogce</groupId> |
| <artifactId>xpp5</artifactId> |
| <version>${xpp5.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ogce</groupId> |
| <artifactId>xsul5</artifactId> |
| <version>${xsul5.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ogce</groupId> |
| <artifactId>xsul</artifactId> |
| <version>${xsul.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ogce</groupId> |
| <artifactId>gpel-client</artifactId> |
| <version>${gpel.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.ogce</groupId> |
| <artifactId>atomixmiser</artifactId> |
| <version>${atomixmiser.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-httpclient</groupId> |
| <artifactId>commons-httpclient</artifactId> |
| <version>3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| <version>1.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.python</groupId> |
| <artifactId>jython</artifactId> |
| <version>${jython.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.xmlbeans</groupId> |
| <artifactId>xmlbeans</artifactId> |
| <version>${xmlbeans.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ws.commons.axiom</groupId> |
| <artifactId>axiom-api</artifactId> |
| <version>1.2.8</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ws.commons.axiom</groupId> |
| <artifactId>axiom-impl</artifactId> |
| <version>1.2.8</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ws.commons.axiom</groupId> |
| <artifactId>axiom-dom</artifactId> |
| <version>1.2.8</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ws.commons.schema</groupId> |
| <artifactId>XmlSchema</artifactId> |
| <version>1.4.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.neethi</groupId> |
| <artifactId>neethi</artifactId> |
| <version>2.0.4</version> |
| </dependency> |
| |
| <!-- AMAZON STUFFS --> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>aws-java-sdk</artifactId> |
| <version>1.3.20</version> |
| </dependency> |
| <dependency> |
| <groupId>net.java.dev.jets3t</groupId> |
| <artifactId>jets3t</artifactId> |
| <version>0.8.0</version> |
| </dependency> |
| |
| <!-- AIRAVATA modules --> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-workflow-model-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-workflow-model-component</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-workflow-engine</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-commons</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <!--<dependency>--> |
| <!--<groupId>org.apache.airavata</groupId>--> |
| <!--<artifactId>airavata-workflow-tracking</artifactId>--> |
| <!--<version>${project.version}</version>--> |
| <!--</dependency>--> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-api-stubs</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-orchestrator-client</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-registry-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!-- JCR Support --> |
| <!-- TODO need clean up --> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-gfac-core</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.derby</groupId> |
| <artifactId>derbyclient</artifactId> |
| <version>${derby.version}</version> |
| </dependency> |
| <!--<dependency>--> |
| <!--<groupId>org.globusonline</groupId>--> |
| <!--<artifactId>transfer-api-client-java</artifactId>--> |
| <!--<version>0.10.8</version>--> |
| <!--</dependency>--> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpclient</artifactId> |
| <version>4.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.httpcomponents</groupId> |
| <artifactId>httpcore</artifactId> |
| <version>4.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-client-configuration</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-server-configuration</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |