2024-02-23 17:35:59 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2024-02-21 11:44:41 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-03-01 18:11:44 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<groupId>org.gcube.service</groupId>
|
|
|
|
<artifactId>helloworld</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>Smartgears HelloWorld Service</name>
|
|
|
|
<packaging>war</packaging>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<version>1.2.0</version>
|
|
|
|
</parent>
|
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<properties>
|
2024-02-22 09:56:36 +01:00
|
|
|
<java.version>11</java.version>
|
2024-02-21 11:44:41 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-02-22 09:56:36 +01:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
|
|
|
<!-- OPTIONAL. for authorization-control-library -->
|
|
|
|
<aspectj-plugin.version>1.14.0</aspectj-plugin.version>
|
2024-05-22 15:47:21 +02:00
|
|
|
|
|
|
|
<enunciate.version>2.16.1</enunciate.version>
|
2024-02-21 11:44:41 +01:00
|
|
|
</properties>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<scm>
|
2024-05-21 16:51:42 +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>
|
2024-02-21 11:44:41 +01:00
|
|
|
</scm>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
|
|
|
<version>3.0.1-SNAPSHOT</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<dependencies>
|
2024-03-01 18:11:44 +01:00
|
|
|
|
2024-05-22 15:47:21 +02:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<!-- smartgears -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-smartgears</artifactId>
|
|
|
|
</dependency>
|
2024-02-22 09:56:36 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>common-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-control-library</artifactId>
|
|
|
|
</dependency>
|
2024-02-21 11:44:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-smartgears-app</artifactId>
|
|
|
|
</dependency>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<!-- jersey -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
|
|
<artifactId>jersey-container-servlet</artifactId>
|
|
|
|
</dependency>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-03-01 18:11:44 +01:00
|
|
|
|
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/org.glassfish.jersey.inject/jersey-cdi2-se -->
|
2024-02-21 13:50:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.inject</groupId>
|
|
|
|
<artifactId>jersey-cdi2-se</artifactId>
|
|
|
|
</dependency>
|
2024-03-01 18:11:44 +01:00
|
|
|
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<!-- add jackson as json provider -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
|
|
</dependency>
|
2024-05-22 15:47:21 +02:00
|
|
|
|
|
|
|
<!-- logs -->
|
2024-02-21 11:44:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2024-05-22 15:47:21 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
</dependencies>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-02-21 11:44:41 +01:00
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
2024-02-22 09:56:36 +01:00
|
|
|
<plugins>
|
2024-02-27 12:45:01 +01:00
|
|
|
|
2024-03-01 18:11:44 +01:00
|
|
|
<!-- OPTIONAL generate the war in a different folder, that will be
|
|
|
|
mounted on docker
|
2024-02-27 12:45:01 +01:00
|
|
|
container -->
|
|
|
|
<!-- <plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<warName>identity-manager</warName>
|
|
|
|
<outputDirectory>tomcat/webapps</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin> -->
|
|
|
|
|
2024-03-01 18:11:44 +01:00
|
|
|
<!-- OPTIONAL. authorization-control-library: add this plugin if you
|
|
|
|
want to use gcube
|
2024-02-27 12:45:01 +01:00
|
|
|
authorization control funzionalities -->
|
2024-02-22 09:56:36 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>aspectj-maven-plugin</artifactId>
|
|
|
|
<version>${aspectj-plugin.version}</version>
|
2024-02-23 17:35:59 +01:00
|
|
|
<configuration>
|
2024-05-22 15:47:21 +02:00
|
|
|
<complianceLevel>${java.version}</complianceLevel>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2024-02-23 17:35:59 +01:00
|
|
|
<aspectLibraries>
|
|
|
|
<aspectLibrary>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-control-library</artifactId>
|
|
|
|
</aspectLibrary>
|
|
|
|
</aspectLibraries>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2024-02-22 09:56:36 +01:00
|
|
|
</plugin>
|
2024-05-22 15:47:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
<!-- Enunciate Maven plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
<artifactId>enunciate-maven-plugin</artifactId>
|
|
|
|
<version>${enunciate.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>assemble</id>
|
|
|
|
<goals>
|
|
|
|
<goal>assemble</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Copy Enunciate Documentation from your-application/api-docs
|
|
|
|
into your war -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-enunciate-docs</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>target</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>
|
|
|
|
${project.build.directory}/${project.artifactId}-${project.version}/api-docs</targetPath>
|
|
|
|
<directory>
|
|
|
|
${project.build.directory}/api-docs</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2024-02-22 09:56:36 +01:00
|
|
|
</plugins>
|
2024-02-21 11:44:41 +01:00
|
|
|
</build>
|
|
|
|
</project>
|