common-smartgears-app/pom.xml

91 lines
2.3 KiB
XML
Raw Normal View History

2022-12-06 12:26:18 +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>
2023-08-03 17:47:41 +02:00
<version>1.2.0</version>
</parent>
<groupId>org.gcube.core</groupId>
<artifactId>common-smartgears-app</artifactId>
2024-02-21 12:05:21 +01:00
<version>3.0.1-SNAPSHOT</version>
<name>Smartgears Application</name>
2022-12-06 12:26:18 +01:00
<properties>
2023-04-04 09:26:45 +02:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2023-08-03 17:47:41 +02:00
<maven.compiler.source>11</maven.compiler.source>
2024-03-12 14:25:51 +01:00
<maven.compiler.target>11</maven.compiler.target>
</properties>
<scm>
2024-03-12 14:25:51 +01:00
<connection>
scm:git:https://code-repo.d4science.org/gCubeSystem/common-smartgears-app</connection>
<developerConnection>
scm:git:https://code-repo.d4science.org/gCubeSystem/common-smartgears-app</developerConnection>
2020-11-03 11:15:50 +01:00
<url>https://code-repo.d4science.org/gCubeSystem/common-smartgears-app</url>
</scm>
2022-05-25 18:58:02 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-smartgears-bom</artifactId>
2024-02-21 12:05:21 +01:00
<version>3.0.1-SNAPSHOT</version>
2022-05-25 18:58:02 +02:00
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
2024-03-12 14:25:51 +01:00
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
2024-02-21 12:05:21 +01:00
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.javassist/javassist -->
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.20.0-GA</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>org.gcube.core</groupId>
<artifactId>common-smartgears</artifactId>
</dependency>
2022-05-30 18:30:17 +02:00
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>common-security</artifactId>
</dependency>
2022-05-30 18:30:17 +02:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>