authorization-control-library/pom.xml

126 lines
3.6 KiB
XML
Raw Normal View History

2022-06-15 17:52:46 +02: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>
<groupId>org.gcube.common</groupId>
<artifactId>authorization-control-library</artifactId>
2024-10-02 16:18:07 +02:00
<version>2.0.0</version>
2022-06-15 17:52:46 +02:00
<name>Authorization Control Library</name>
<description>Authorization Control Library</description>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
2024-02-21 20:27:02 +01:00
<version>1.2.0</version>
</parent>
2020-02-04 11:52:50 +01:00
<scm>
2024-05-15 17:00:46 +02:00
<connection>
scm:git:https://code-repo.d4science.org/gCubeSystem/authorization-control-library.git</connection>
<developerConnection>
scm:git:https://code-repo.d4science.org/gCubeSystem/authorization-control-library.git</developerConnection>
<url>
https://code-repo.d4science.org/gCubeSystem/authorization-control-library</url>
2022-06-15 17:52:46 +02:00
</scm>
2022-12-21 18:36:13 +01:00
<properties>
2024-02-21 20:27:02 +01:00
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
2022-12-21 18:36:13 +01:00
</properties>
2022-06-15 17:52:46 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
2024-02-21 20:27:02 +01:00
<artifactId>gcube-smartgears-bom</artifactId>
2024-10-02 16:18:07 +02:00
<version>4.0.0</version>
2022-06-15 17:52:46 +02:00
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>common-security</artifactId>
</dependency>
2024-02-21 20:27:02 +01:00
<dependency>
<groupId>org.gcube.core</groupId>
<artifactId>common-smartgears</artifactId>
</dependency>
2022-06-15 17:52:46 +02:00
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
2024-02-21 20:27:02 +01:00
<dependency>
2024-05-15 17:00:46 +02:00
<groupId>jakarta.xml.ws</groupId>
<artifactId>jakarta.xml.ws-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
2024-02-21 20:27:02 +01:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2022-06-15 17:52:46 +02:00
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>test-compile</goal>
<goal>compile</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<configuration>
2024-02-21 20:27:02 +01:00
<complianceLevel>11</complianceLevel>
<source>11</source>
<target>11</target>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
2022-06-15 17:52:46 +02:00
</pluginManagement>
<plugins>
2022-06-15 17:52:46 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
2024-02-21 20:27:02 +01:00
<version>1.14.0</version>
2022-06-15 17:52:46 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>