2016-01-29 15:54:16 +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>
|
2019-10-03 13:00:42 +02:00
|
|
|
<version>1.1.0</version>
|
2016-01-29 15:54:16 +01:00
|
|
|
</parent>
|
2017-10-31 11:30:32 +01:00
|
|
|
|
2016-01-29 15:54:16 +01:00
|
|
|
<groupId>org.gcube.accounting</groupId>
|
|
|
|
<artifactId>accounting-aggregator-se-plugin</artifactId>
|
2018-11-21 11:29:44 +01:00
|
|
|
<version>1.6.0-SNAPSHOT</version>
|
2019-12-09 17:26:49 +01:00
|
|
|
<name>Accounting Aggregator Smart Executor Plugin</name>
|
|
|
|
<description>
|
|
|
|
Accounting Aggregator Smart Executor Plugin provides lossless
|
|
|
|
accounting records aggregation.
|
|
|
|
</description>
|
2017-10-31 11:30:32 +01:00
|
|
|
|
2016-01-29 15:54:16 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-04-11 14:20:05 +02:00
|
|
|
<serviceClass>Accounting</serviceClass>
|
2016-01-29 15:54:16 +01:00
|
|
|
</properties>
|
2017-10-31 11:30:32 +01:00
|
|
|
|
2016-01-29 15:54:16 +01:00
|
|
|
<scm>
|
2019-10-03 13:00:19 +02:00
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
2016-01-29 15:54:16 +01:00
|
|
|
</scm>
|
2017-10-31 11:30:32 +01:00
|
|
|
|
2016-07-29 10:48:26 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-12-09 17:26:49 +01:00
|
|
|
<groupId>org.gcube.vremanagement</groupId>
|
|
|
|
<artifactId>smart-executor-bom</artifactId>
|
|
|
|
<version>1.0.0</version>
|
2016-07-29 10:48:26 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
2017-10-27 17:19:20 +02:00
|
|
|
</dependency>
|
2016-07-29 10:48:26 +02:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2017-10-31 11:30:32 +01:00
|
|
|
|
2016-01-29 15:54:16 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.vremanagement</groupId>
|
|
|
|
<artifactId>smart-executor-api</artifactId>
|
2017-10-27 17:19:20 +02:00
|
|
|
</dependency>
|
2017-09-05 17:13:50 +02:00
|
|
|
<!-- Document Store and Accounting libraries -->
|
2016-01-29 15:54:16 +01:00
|
|
|
<dependency>
|
2016-07-29 10:48:26 +02:00
|
|
|
<groupId>org.gcube.accounting</groupId>
|
|
|
|
<artifactId>accounting-lib</artifactId>
|
2016-01-29 15:54:16 +01:00
|
|
|
</dependency>
|
2016-07-29 10:48:26 +02:00
|
|
|
<dependency>
|
2017-09-05 17:13:50 +02:00
|
|
|
<groupId>com.couchbase.client</groupId>
|
|
|
|
<artifactId>java-client</artifactId>
|
2019-12-09 17:26:49 +01:00
|
|
|
<version>2.7.11</version>
|
2016-07-29 10:48:26 +02:00
|
|
|
</dependency>
|
2017-09-05 17:13:50 +02:00
|
|
|
<!-- END Document Store and Accounting libraries -->
|
2017-10-31 11:31:26 +01:00
|
|
|
<!-- Test Dependencies -->
|
2016-01-29 15:54:16 +01:00
|
|
|
<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>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-10-31 11:30:32 +01:00
|
|
|
|
2016-01-29 15:54:16 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
2017-10-27 17:19:20 +02:00
|
|
|
<execution>
|
2017-10-31 11:25:31 +01:00
|
|
|
<id>make-uberjar</id>
|
2019-12-09 17:26:49 +01:00
|
|
|
<phase>package</phase>
|
2017-10-27 17:19:20 +02:00
|
|
|
</execution>
|
2016-01-29 15:54:16 +01:00
|
|
|
<execution>
|
2017-10-31 11:25:31 +01:00
|
|
|
<id>make-servicearchive</id>
|
2019-12-09 17:26:49 +01:00
|
|
|
<phase>package</phase>
|
2016-01-29 15:54:16 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-07-29 10:48:26 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-12-09 17:26:49 +01:00
|
|
|
|
2016-01-29 15:54:16 +01:00
|
|
|
</project>
|