Fixed project structure to comply with new conventions

This commit is contained in:
Luca Frosini 2021-05-25 16:52:10 +02:00
parent bd62de9d5d
commit afa17744cb
3 changed files with 59 additions and 38 deletions

57
CHANGELOG.md Normal file
View File

@ -0,0 +1,57 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# Changelog for Smart Executor Client
## [v2.0.0-SNAPSHOT]
- New version of the client to comply with new REST APIs provided by Smart Executor 2.0.0 [#12997]
## [v1.7.0] - 2019-02-26
- Fixed gCoreEndpoint filter using got ServiceEndpoints [#12984]
## [v1.6.0] - 2017-02-15
- Added client for REST interface of Smart Executor [#5109]
- Created fallback client presenting as REST client but using SOAP API to support old SmartExecutor instances with new code [#5109]
- Deprecated old SOAP client [#5109]
## [v1.5.0] - 2017-25-07
- Exposed unSchedule(executionIdentifier) API
## [v1.4.0] - 2017-03-16
- Fixed classes javadoc
## [v1.3.0] - 2016-11-07
- SmartExecutor has been passed to Authorization 2.0 [#4944 #2112]
- Provided to plugins the possibility to define a custom notifier [#5089]
## [v1.2.0] - 2016-02-08
- Using Persistence (CouchDB) to save Scheduled Task configuration [#579]
- Added Unscheduling feature for repetitive task [#521]
## [v1.1.0] - 2015-12-09
- Added Recurrent and Scheduled Task support [#111]
- Saving Task Evolution on Persistence (CouchDB) [#89]
## [v1.0.0] - 2015-02-05
- First Release

View File

@ -1,36 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<ReleaseNotes>
<Changeset component="org.gcube.vre-management.smart-executor-client.2.0.0" date="${buildDate}">
<Change>New version fo the client to comply with new REST APIs provided by Smart Executor 2.0.0 #12997</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.7.0" date="2019-02-26">
<Change>Fixed gCoreEndpoint filter using got ServiceEndpoints #12984</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.6.0" date="2017-02-15">
<Change>Added client for REST interface of Smart Executor #5109</Change>
<Change>Created fallback client presenting as REST client but using SOAP api to support old SmartExecutor instances with new code #5109</Change>
<Change>Deprecated old SOAP client #5109</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.5.0" date="2017-25-07">
<Change>Exposed unSchedule(executionIdentifier) API</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.4.0" date="2017-03-16">
<Change>Fixed classes javadoc</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.3.0" date="2016-11-07">
<Change>SmartExecutor has been passed to Authorization 2.0 (refs #4944 #2112)</Change>
<Change>Provided to plugins the possibility to define a custom notifier (refs #5089)</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.2.0" date="2016-02-08">
<Change>Using Persistence (CouchDB) to save Scheduled Task configuration (refs #579)</Change>
<Change>Added Unscheduling feature for repetitive task (refs #521)</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.1.0" date="2015-12-09">
<Change>Added Recurrent and Scheduled Task support (refs #111)</Change>
<Change>Saving Task Evolution on Persistence (CouchDB) (refs #89)</Change>
</Changeset>
<Changeset component="org.gcube.vre-management.smart-executor-client.1.0.0" date="2015-02-05">
<Change>First Release</Change>
</Changeset>
</ReleaseNotes>

View File

@ -10,7 +10,7 @@
<groupId>org.gcube.vremanagement</groupId>
<artifactId>smart-executor-client</artifactId>
<version>2.0.0</version>
<version>2.0.0-SNAPSHOT</version>
<name>Smart Executor Client</name>
<description>Smart Executor Client is a library designed to interact with Smart Executor exposed REST API</description>
@ -30,7 +30,7 @@
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
<version>1.4.0</version>
<version>2.0.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>