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>
|
2024-02-29 15:28:00 +01: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>
|
2024-04-23 12:37:22 +02:00
|
|
|
<version>2.0.0</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>
|
2022-11-17 17:17:15 +01:00
|
|
|
<version>3.1.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>
|
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>
|
2020-03-11 18:52:39 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>storagehub-client-library</artifactId>
|
|
|
|
</dependency>
|
2021-03-12 11:24:09 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.data.publishing</groupId>
|
|
|
|
<artifactId>document-store-lib-postgresql</artifactId>
|
2021-11-09 12:04:29 +01:00
|
|
|
<version>[1.0.0, 2.0.0-SNAPSHOT)</version>
|
2021-03-12 11:24:09 +01:00
|
|
|
</dependency>
|
2021-07-29 12:35:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.accounting</groupId>
|
|
|
|
<artifactId>accounting-analytics</artifactId>
|
2024-02-16 17:06:49 +01:00
|
|
|
<version>[4.0.0, 5.0.0-SNAPSHOT)</version>
|
2021-07-29 12:35:12 +02:00
|
|
|
</dependency>
|
2020-03-11 18:52:39 +01:00
|
|
|
<dependency>
|
2020-03-16 15:07:48 +01:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-03-11 18:52:39 +01:00
|
|
|
</dependency>
|
2024-02-13 16:03:10 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-utils</artifactId>
|
|
|
|
<version>[2.2.0, 3.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
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>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2021-11-12 10:41:07 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
<outputDirectory>${basedir}${file.separator}target${file.separator}libs</outputDirectory>
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
<excludeTypes>war</excludeTypes>
|
|
|
|
<stripVersion>false</stripVersion>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-01-29 15:54:16 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
2017-10-27 17:19:20 +02:00
|
|
|
<execution>
|
2019-12-19 09:52:55 +01:00
|
|
|
<id>uberjar</id>
|
|
|
|
<configuration>
|
|
|
|
<appendAssemblyId>true</appendAssemblyId>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>uberjar.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2016-01-29 15:54:16 +01:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-07-29 10:48:26 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-02-16 17:06:49 +01:00
|
|
|
</project>
|