Compare commits

...

8 Commits

Author SHA1 Message Date
Lucio Lelii 6def156ab9 commit for release 2022-12-06 13:05:55 +01:00
Lucio Lelii 9e1e787c60 update 2022-12-06 13:04:06 +01:00
Lucio Lelii 6a3afbfde4 updated 2022-12-06 12:58:39 +01:00
Lucio Lelii 4b5f467cd7 updated to build with java 11 compatibility 2022-12-06 12:57:10 +01:00
Lucio Lelii 8a94acbabb updated 2022-12-06 12:47:45 +01:00
Lucio Lelii 21906c2edf updated 2022-12-06 12:45:12 +01:00
Lucio Lelii 441bba3dde updated for release 2022-12-06 12:31:57 +01:00
Lucio Lelii 61810ad839 update for release 2022-12-06 12:30:36 +01:00
5 changed files with 23 additions and 45 deletions

View File

@ -30,10 +30,6 @@
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>

View File

@ -2,6 +2,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for org.gcube.data.transfer.data-transfer-plugin-framework
## [v2.0.8] 2022-12-06
- Update to integrate last version of common-smartgears-app
## [v2.0.7] 2020-09-07
### Fixes

22
pom.xml
View File

@ -9,13 +9,15 @@
</parent>
<groupId>org.gcube.data.transfer</groupId>
<artifactId>data-transfer-service</artifactId>
<version>2.0.7</version>
<version>2.0.8</version>
<packaging>war</packaging>
<name>DataTransferService</name>
<properties>
<properties>
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
@ -33,10 +35,10 @@
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-smartgears-bom</artifactId>
<version>2.0.0</version>
<version>2.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependency>
</dependencies>
</dependencyManagement>
@ -68,8 +70,20 @@
<artifactId>common-smartgears</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>

View File

@ -1,35 +0,0 @@
package org.gcube.data.transfer.service;
import javax.inject.Inject;
import javax.xml.bind.annotation.XmlRootElement;
import org.gcube.data.transfer.service.transfers.engine.CapabilitiesProvider;
import org.gcube.smartgears.handlers.application.ApplicationLifecycleEvent.Start;
import org.gcube.smartgears.handlers.application.ApplicationLifecycleEvent.Stop;
import org.gcube.smartgears.handlers.application.ApplicationLifecycleHandler;
import lombok.extern.slf4j.Slf4j;
@XmlRootElement(name = "data-transfer-lifecycle")
@Slf4j
public class DTServiceLifecycleMAnager extends ApplicationLifecycleHandler{
@Inject
CapabilitiesProvider capabilities;
@Override
public void onStart(Start e) {
super.onStart(e);
log.info("Capabilities : "+capabilities.get());
}
@Override
public void onStop(Stop e) {
// TODO Auto-generated method stub
super.onStop(e);
}
}

View File

@ -1 +0,0 @@
org.gcube.data.transfer.service.DTServiceLifecycleMAnager