2016-01-11 11:29:26 +01:00
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.accounting</groupId>
|
|
|
|
<artifactId>accounting-analytics-persistence-couchbase</artifactId>
|
2017-05-05 16:57:26 +02:00
|
|
|
<version>1.4.0-SNAPSHOT</version>
|
2016-01-11 11:29:26 +01:00
|
|
|
<name>Accounting Analytics Persistence CouchBase</name>
|
|
|
|
<description>Accounting Analytics Persistence CouchBase Implementation</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
2016-04-11 12:55:17 +02:00
|
|
|
<serviceClass>Accounting</serviceClass>
|
2016-01-11 11:29:26 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/${project.artifactId}</connection>
|
|
|
|
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/${project.artifactId}</developerConnection>
|
|
|
|
<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/${project.artifactId}</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencies>
|
2016-02-25 17:56:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.data.publishing</groupId>
|
|
|
|
<artifactId>document-store-lib</artifactId>
|
2017-05-12 10:28:12 +02:00
|
|
|
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
2016-02-25 17:56:47 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-01-11 11:29:26 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.accounting</groupId>
|
2016-03-25 19:18:17 +01:00
|
|
|
<artifactId>accounting-lib</artifactId>
|
2017-05-12 10:28:12 +02:00
|
|
|
<version>[3.0.0-SNAPSHOT, 4.0.0-SNAPSHOT)</version>
|
2016-01-11 11:29:26 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.accounting</groupId>
|
2016-03-25 19:18:17 +01:00
|
|
|
<artifactId>accounting-analytics</artifactId>
|
|
|
|
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
2016-01-11 11:29:26 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-02-12 17:15:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-scope</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-01-11 11:29:26 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2016-02-10 14:56:32 +01:00
|
|
|
<version>1.7.5</version>
|
2016-01-11 11:29:26 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- CouchBase libraries -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.couchbase.client</groupId>
|
|
|
|
<artifactId>java-client</artifactId>
|
2016-06-28 17:18:03 +02:00
|
|
|
<version>2.2.7</version>
|
2016-01-11 11:29:26 +01:00
|
|
|
</dependency>
|
|
|
|
<!-- END CouchBase libraries -->
|
2016-07-25 09:55:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20090211</version>
|
|
|
|
</dependency>
|
2016-01-11 11:29:26 +01:00
|
|
|
<!-- Test Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.13</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-09-08 10:40:04 +02:00
|
|
|
<!-- use for Junit Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.resources</groupId>
|
|
|
|
<artifactId>registry-publisher</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-encryption</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-09-19 11:01:14 +02:00
|
|
|
|
2016-09-08 10:40:04 +02:00
|
|
|
|
|
|
|
<!-- End Use for Junit Test -->
|
2016-01-11 11:29:26 +01:00
|
|
|
</dependencies>
|
2016-02-10 14:56:32 +01:00
|
|
|
|
2016-01-11 11:29:26 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-07-26 11:15:22 +02:00
|
|
|
<plugin>
|
2016-04-11 12:55:17 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${distroDirectory}/descriptor.xml</descriptor>
|
|
|
|
</descriptors>
|
2016-01-11 11:29:26 +01:00
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-07-26 11:15:22 +02:00
|
|
|
<id>servicearchive</id>
|
|
|
|
<phase>install</phase>
|
2016-01-11 11:29:26 +01:00
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2016-01-08 17:54:03 +01:00
|
|
|
</project>
|