Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
96 lines (84 sloc)
3.51 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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> | |
<prerequisites><maven>3.0</maven></prerequisites> | |
<name>Data Avenue Core Services Project</name> | |
<description>Data Avenue Core Services offer uniform access to different storage types (GridFTP, SRM, etc.)</description> | |
<groupId>hu.sztaki.lpds.dataavenue.core</groupId> | |
<artifactId>data-avenue.core</artifactId> | |
<version>1.0.0</version> | |
<packaging>pom</packaging> | |
<url>https://data-avenue.eu/</url> | |
<repositories> <!-- repository for jSAGA --> | |
<repository> | |
<id>in2p3</id> | |
<name>IN2P3 Maven repository</name> | |
<url>http://maven.in2p3.fr</url> | |
</repository> | |
<repository> | |
<id>cental</id> | |
<name>Central Maven Repository</name> | |
<url>https://repo.maven.apache.org/maven2/</url> | |
</repository> | |
</repositories> | |
<properties> | |
<dataavenue.core.service.version>1.0.0</dataavenue.core.service.version> | |
<dataavenue.core.adaptor-interface.version>1.0.0</dataavenue.core.adaptor-interface.version> | |
<dataavenue.core.adaptor.s3.version>1.0.0</dataavenue.core.adaptor.s3.version> | |
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> <!-- prevents some warnings --> | |
<slf4j.version>1.7.2</slf4j.version> | |
<cxf.version>2.7.5</cxf.version> <!-- web services framework --> | |
<maven.compiler.source>1.6</maven.compiler.source> | |
<maven.compiler.target>1.6</maven.compiler.target> | |
</properties> | |
<licenses> | |
<license> | |
<name>The Apache Software License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
</license> | |
</licenses> | |
<modules> | |
<module>data-avenue.core.adaptor-interface</module> | |
<module>data-avenue.adaptor.s3</module> | |
<module>data-avenue.adaptor.hdfs</module> | |
<module>data-avenue.adaptor.jclouds</module> <!-- jsaga's bcprov-jdk16-1.46.jar is in conflict with jclouds' bcprov-ext-jdk15on-1.51.jar, add to packagingExcludes WEB-INF/lib/bcprov-jdk16-1.46.jar, of core.war/pom.xml --> | |
<module>data-avenue.adaptor.gss</module> | |
<!--module>data-avenue.adaptor.cdmi</module--> | |
<!--module>data-avenue.adaptor.cassandra</module--> <!-- commented because of guava 16 (cassandra) vs. guava 18 (jclouds) conflict --> | |
<module>data-avenue.core.service</module> | |
<module>data-avenue.core.war</module> | |
<module>data-avenue.adaptor.dropbox</module> | |
<module>data-avenue.adaptor.googledrive</module> | |
</modules> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.0</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-eclipse-plugin</artifactId> | |
<version>2.8</version> | |
<configuration> | |
<downloadSources>true</downloadSources> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-site-plugin</artifactId> | |
<version>3.7.1</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-project-info-reports-plugin</artifactId> | |
<version>3.0.0</version> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |