Fixed component name

This commit is contained in:
Luca Frosini 2023-01-31 14:52:02 +01:00
parent 96aafa272c
commit b9e08f3869
3 changed files with 13 additions and 9 deletions

View File

@ -1,6 +1,6 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# Changelog for gCube Software Versions Processor # Changelog for gCube Software Versions Processor Lib
## [v1.0.0] ## [v1.0.0]

View File

@ -1,6 +1,6 @@
# gCube Software Versions Processor # gCube Software Versions Processor Lib
gCube Software Versions Processor is a software which help to process software versions to made actions such as: gCube Software Versions Processor Lib is a library which help to process software versions to made actions such as:
* publish the software (e.g. deposit on Zenodo to obtain a DOI); * publish the software (e.g. deposit on Zenodo to obtain a DOI);
* export the citations (e.g. in BibLaTex format) * export the citations (e.g. in BibLaTex format)
@ -29,8 +29,8 @@ Tell people how to cite this software.
* Use a specific BibTeX entry for the software? * Use a specific BibTeX entry for the software?
@software{luca_frosini_software_version_processor, @software{luca_frosini_software_version_processor_lib,
title = {Software Versions Processor}, title = {Software Versions Processor Lib},
author = {Frosini, Luca}, author = {Frosini, Luca},
organization = {ISTI - CNR}, organization = {ISTI - CNR},
address = {Pisa, Italy}, address = {Pisa, Italy},

12
pom.xml
View File

@ -6,9 +6,15 @@
<version>1.1.0</version> <version>1.1.0</version>
</parent> </parent>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>software-versions-processor</artifactId> <artifactId>software-versions-processor-lib</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<name>Zenodo Deposit</name> <name>gCube Software Versions Processor Lib</name>
<description>
gCube Software Versions Processor Lib is a library which help to process software versions to made actions such as:
* publish the software (e.g. deposit on Zenodo to obtain a DOI);
* export the citations (e.g. in BibLaTex format)
</description>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
@ -55,12 +61,10 @@
<groupId>org.glassfish.jersey.core</groupId> <groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId> <artifactId>jersey-client</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.glassfish.jersey.media</groupId> <groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId> <artifactId>jersey-media-json-jackson</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.glassfish.jersey.media</groupId> <groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-multipart</artifactId> <artifactId>jersey-media-multipart</artifactId>