From 2e538de9ca25d30e98fe3fbdb181613eebf71865 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Mon, 15 Mar 2021 16:48:30 +0100 Subject: [PATCH] Created maven project --- .gitignore | 3 ++ .settings/.gitignore | 3 ++ pom.xml | 86 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 92 insertions(+) create mode 100644 .settings/.gitignore create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore index 84adb3f..04117ca 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,6 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* +/target/ +/.classpath +/.project diff --git a/.settings/.gitignore b/.settings/.gitignore new file mode 100644 index 0000000..1de83a6 --- /dev/null +++ b/.settings/.gitignore @@ -0,0 +1,3 @@ +/org.eclipse.core.resources.prefs +/org.eclipse.jdt.core.prefs +/org.eclipse.m2e.core.prefs diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..aa82620 --- /dev/null +++ b/pom.xml @@ -0,0 +1,86 @@ + + 4.0.0 + + org.gcube.tools + maven-parent + 1.1.0 + + org.gcube.accounting + accounting-analytics-pesistence-postgresql + 1.0.0-SNAPSHOT + Accounting Analytics Backend Connector for PostgreSQL + Accounting Analytics Backend Connector for PostgreSQL + + + UTF-8 + Accounting + + + + scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git + scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git + https://code-repo.d4science.org/gCubeSystem/${project.artifactId} + + + + + + org.gcube.distribution + gcube-bom + 2.0.1 + pom + import + + + + + + + org.gcube.accounting + accounting-lib + + + org.gcube.accounting + accounting-analytics + [3.0.0-SNAPSHOT, 4.0.0-SNAPSHOT) + + + org.slf4j + slf4j-api + + + + org.postgresql + postgresql + 42.2.19 + + + + junit + junit + 4.11 + test + + + ch.qos.logback + logback-classic + test + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + make-uberjar + package + + + + + + \ No newline at end of file