Fixing json for zenodo export

This commit is contained in:
Luca Frosini 2023-01-30 19:07:18 +01:00
parent 9b876b5d6f
commit 0d0fc4cc1e
3 changed files with 54 additions and 6 deletions

View File

@ -0,0 +1,22 @@
{
"name": "${project.artifactId}",
"title": "${project.name} {{version}}",
"version": "${project.version}",
"date": "${build.date}",
"gcube_release_version": null,
"gcube_release_ticket": null,
"concept_doi_url": "https://doi.org/10.5281/zenodo.7447655",
"version_doi_url": null,
"group": "data-catalogue",
"description": "${project.description}",
"html_description": "<p>${project.description}</p>",
"keywords": ["gCube", "Catalogue", "D4Science"],
"authors": [
{
"affiliation": "Istituto di Scienza e Tecnologie dell'Informazione \"A. Faedo\" - CNR, Italy",
"name": "Frosini, Luca",
"orcid": "0000-0003-3183-2291"
}
]
}

View File

@ -151,7 +151,8 @@
"gcube_release_version": "4.13.1",
"gcube_release_ticket": "https://support.d4science.org/issues/13242",
"concept_doi_url": null,
"version_doi_url": null
"version_doi_url": null,
"code_location": "https://code-repo.d4science.org/gCubeSystem/{{name}}"
},
{
"version": "1.1.0",
@ -160,7 +161,8 @@
"gcube_release_version": "4.14.0",
"gcube_release_ticket": "https://support.d4science.org/issues/16357",
"concept_doi_url": "PREVIOUS",
"version_doi_url": null
"version_doi_url": null,
"code_location": "https://code-repo.d4science.org/gCubeSystem/{{name}}"
},
{
"version": "1.2.0",
@ -169,7 +171,8 @@
"gcube_release_version": "4.15.0",
"gcube_release_ticket": "https://support.d4science.org/issues/16746",
"concept_doi_url": "PREVIOUS",
"version_doi_url": null
"version_doi_url": null,
"code_location": "https://code-repo.d4science.org/gCubeSystem/{{name}}"
},
{
"version": "1.2.1",
@ -177,7 +180,8 @@
"group": "data-publishing",
"gcube_release_version": "4.18.0",
"gcube_release_ticket": "https://support.d4science.org/issues/18337",
"version_doi_url": null
"version_doi_url": null,
"code_location": "https://code-repo.d4science.org/gCubeSystem/{{name}}"
},
{
"version": "1.2.2",
@ -185,7 +189,8 @@
"group": "data-publishing",
"gcube_release_version": "5.0.0",
"gcube_release_ticket": "https://support.d4science.org/issues/20649",
"version_doi_url": null
"version_doi_url": null,
"code_location": "https://code-repo.d4science.org/gCubeSystem/{{name}}"
},
{
"version": "2.0.0",

23
pom.xml
View File

@ -11,7 +11,7 @@
<artifactId>gcat-client</artifactId>
<version>2.4.1-SNAPSHOT</version>
<name>gCube Catalogue (gCat) Client</name>
<description>gCube Catalogue (gCat) Client is a library designed to interact with gCat Service exposed REST API</description>
<description>gCube Catalogue (gCat) Client is a library designed to interact with REST APIs exposed by the gCat Service.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -90,4 +90,25 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<executions>
<execution>
<id>build.date</id>
<phase>initialize</phase>
<goals>
<goal>create-timestamp</goal>
</goals>
<configuration>
<timestampFormat>yyyy-MM-dd</timestampFormat>
<timestampPropertyName>build.date</timestampPropertyName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>