From c6b3f53bce4442d3c0daa30b8fa23aa42bea54cf Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Thu, 21 Nov 2019 17:01:08 +0100 Subject: [PATCH] Fixed pom for a better management of distro files --- changelog.xml | 3 +++ pom.xml | 7 +++++-- src/main/.gitignore | 1 - src/main/webapp/WEB-INF/.gitignore | 4 ++++ web.xml => src/main/webapp/WEB-INF/web.xml | 0 5 files changed, 12 insertions(+), 3 deletions(-) delete mode 100644 src/main/.gitignore create mode 100644 src/main/webapp/WEB-INF/.gitignore rename web.xml => src/main/webapp/WEB-INF/web.xml (100%) diff --git a/changelog.xml b/changelog.xml index 90f4f2f..23ce6a6 100644 --- a/changelog.xml +++ b/changelog.xml @@ -2,6 +2,9 @@ + + + User information are checked/updated on CKAN using portal information #16360 Items listing API when invoked at VO level allow to get all the catalogue items or filtering them by organization #17635 Enabled the possibility of filtering the result of items listing API #17645 diff --git a/pom.xml b/pom.xml index 0a9cd85..7460eea 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ org.gcube.data-publishing gcat war - 1.4.0 + 1.4.1 gCube Catalogue Service This service allows any client to publish on the gCube Catalogue. @@ -21,7 +21,7 @@ 2.24.1 UTF-8 - ${project.basedir}/src/main/webapp/WEB-INF + ${project.basedir}${file.separator}src${file.separator}main${file.separator}webapp${file.separator}WEB-INF DataPublishing @@ -274,8 +274,11 @@ src + LICENSE.md + README.md web.xml gcube-app.xml + changelog.xml diff --git a/src/main/.gitignore b/src/main/.gitignore deleted file mode 100644 index 263eccc..0000000 --- a/src/main/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/webapp/ diff --git a/src/main/webapp/WEB-INF/.gitignore b/src/main/webapp/WEB-INF/.gitignore new file mode 100644 index 0000000..6f6ab36 --- /dev/null +++ b/src/main/webapp/WEB-INF/.gitignore @@ -0,0 +1,4 @@ +/LICENSE.md +/README.md +/changelog.xml +/gcube-app.xml diff --git a/web.xml b/src/main/webapp/WEB-INF/web.xml similarity index 100% rename from web.xml rename to src/main/webapp/WEB-INF/web.xml