Created maven project

This commit is contained in:
Luca Frosini 2021-03-10 16:20:14 +01:00
parent 0b45b3ea8f
commit b317fe0541
2 changed files with 18 additions and 0 deletions

5
.gitignore vendored
View File

@ -23,3 +23,8 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/
/.classpath
/.project
/.settings

13
pom.xml Normal file
View File

@ -0,0 +1,13 @@
<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>
<parent>
<groupId>org.gcube.tools</groupId>
<artifactId>maven-parent</artifactId>
<version>1.1.0</version>
</parent>
<groupId>org.gcube.data.publishing</groupId>
<artifactId>document-store-lib-postgresql</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Document Store Backend Connector Library for PostgreSQL</name>
<description>Document Store Backend Connector Library for PostgreSQL</description>
</project>