storagehub-script-utils/pom.xml

48 lines
1.5 KiB
XML
Raw Normal View History

2021-05-04 11:48:19 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.data.access</groupId>
2021-05-04 12:21:28 +02:00
<artifactId>storagehub-script-utils</artifactId>
2023-05-22 13:14:15 +02:00
<version>2.0.0-SNAPSHOT</version>
2021-05-04 11:48:19 +02:00
<name>ScriptingUtil</name>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
<version>1.1.0</version>
<relativePath />
</parent>
2021-06-25 10:13:04 +02:00
<scm>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/storagehub-script-utils.git</connection>
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/storagehub-script-utils.git</developerConnection>
<url>https://code-repo.d4science.org/gCubeSystem/storagehub-script-utils</url>
</scm>
2022-12-14 14:52:54 +01:00
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
2021-05-04 11:48:19 +02:00
<dependencies>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>storagehub-model</artifactId>
2022-09-28 19:11:32 +02:00
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
2021-05-04 11:48:19 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-api</artifactId>
<version>2.19.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>