| <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>org.apache.airavata.services</groupId> |
| <artifactId>airavata-registry-rest-services</artifactId> |
| <packaging>war</packaging> |
| <version>1.0-SNAPSHOT</version> |
| <name>airavata-registry-rest-services</name> |
| <build> |
| <finalName>airavata-registry-rest-services</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.cargo</groupId> |
| <artifactId>cargo-maven2-plugin</artifactId> |
| <version>${cargo.version}</version> |
| <configuration> |
| <wait>true</wait> |
| <configuration> |
| <properties> |
| <cargo.servlet.port>9080</cargo.servlet.port> |
| <cargo.tomcat.ajp.port>9009</cargo.tomcat.ajp.port> |
| <cargo.rmi.port>9099</cargo.rmi.port> |
| <cargo.jvmargs> |
| <![CDATA[-Xdebug -Xrunjdwp:transport=dt_socket,address=${cargo.debug.address},server=y,suspend=${cargo.debug.suspend} -noverify ${javaagent}]]> |
| </cargo.jvmargs> |
| <cargo.tomcat.context.reloadable>true</cargo.tomcat.context.reloadable> |
| </properties> |
| <home>${project.build.directory}/tomcat6x</home> |
| <deployables> |
| <deployable> |
| <groupId>org.apache.airavata.services</groupId> |
| <artifactId>airavata-registry-rest-services</artifactId> |
| <type>war</type> |
| <properties> |
| <context>/airavata-services</context> |
| </properties> |
| </deployable> |
| </deployables> |
| </configuration> |
| <container> |
| <containerId>tomcat6x</containerId> |
| <timeout>180000</timeout> |
| <zipUrlInstaller> |
| <url> |
| http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.32/bin/apache-tomcat-6.0.32.tar.gz |
| </url> |
| </zipUrlInstaller> |
| <systemProperties> |
| |
| </systemProperties> |
| </container> |
| </configuration> |
| </plugin> |
| </plugins> |
| |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-servlet</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-json</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey.contribs</groupId> |
| <artifactId>jersey-multipart</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| <artifactId>jersey-test-framework-grizzly2</artifactId> |
| <version>${jersey.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-server</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-client</artifactId> |
| <version>${jersey.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>mysql</groupId> |
| <artifactId>mysql-connector-java</artifactId> |
| <version>5.1.6</version> |
| </dependency> |
| |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.8.2</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>3.0</version> |
| </dependency> |
| |
| <!-- Airavata --> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-gfac-schema-utils</artifactId> |
| <version>${airavata.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-registry-api</artifactId> |
| <version>${airavata.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-jpa-registry</artifactId> |
| <version>${airavata.version}</version> |
| </dependency> |
| <!-- Logging --> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${org.slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>${org.slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| <version>${org.slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <version>${org.slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>log4j</groupId> |
| <artifactId>log4j</artifactId> |
| <version>${log4j.version}</version> |
| </dependency> |
| <!--dependency> |
| <groupId>org.apache.airavata</groupId> |
| <artifactId>airavata-security</artifactId> |
| <version>0.5-incubating-SNAPSHOT</version> |
| </dependency--> |
| </dependencies> |
| <properties> |
| <jersey.version>1.13</jersey.version> |
| <grizzly.version>2.0.0-M3</grizzly.version> |
| <org.slf4j.version>1.6.1</org.slf4j.version> |
| <log4j.version>1.2.16</log4j.version> |
| <airavata.version>0.6-SNAPSHOT</airavata.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <cargo.version>1.2.1</cargo.version> |
| <!-- if you want a remote debugging on a different a address override on |
| command line with -Dcargo.debug.addres=xxxx --> |
| <cargo.debug.address>8000</cargo.debug.address> |
| <!-- if you want to start remote debugging session suspended override on |
| command line with -Dcargo.debug.suspend=y --> |
| <cargo.debug.suspend>n</cargo.debug.suspend> |
| <javaagent /> |
| </properties> |
| <repositories> |
| <repository> |
| <id>central</id> |
| <name>Maven Central</name> |
| <url>http://repo1.maven.org/maven2</url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| <repository> |
| <name>ogce.m2.all</name> |
| <id>ogce.m2.all</id> |
| <url>http://community.ucs.indiana.edu:9090/archiva/repository/ogce.m2.all</url> |
| <snapshots> |
| <!--updatePolicy>daily</updatePolicy --> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| <repository> |
| <id>m2-snapshot-repository</id> |
| <url>http://people.apache.org/repo/m2-snapshot-repository</url> |
| <releases> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| <repository> |
| <id>OW2</id> |
| <name>OW2 Repository</name> |
| <url>http://maven.ow2.org/maven2</url> |
| </repository> |
| </repositories> |
| </project> |