Removed test class and added missing dependency
Signed-off-by: Jonathan Philip Knoblauch <JonathanPhilip.Knoblauch@bosch-si.com>
This commit is contained in:
@@ -1,22 +0,0 @@
|
|||||||
package org.eclipse.hawkbit.example.ddi.client;
|
|
||||||
|
|
||||||
import org.eclipse.hawkbit.ddi.client.DdiExampleClient;
|
|
||||||
import org.eclipse.hawkbit.ddi.client.strategy.SaveArtifactsToLocalTempDirectories;
|
|
||||||
import org.junit.Test;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Unit test for simple App.
|
|
||||||
*/
|
|
||||||
public class AppTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void AppTest() {
|
|
||||||
final DdiExampleClient ddiClient = new DdiExampleClient("http://localhost:8080/", "Einstein21", "DEFAULT",
|
|
||||||
new SaveArtifactsToLocalTempDirectories());
|
|
||||||
final Thread thread = new Thread(ddiClient);
|
|
||||||
thread.run();
|
|
||||||
|
|
||||||
System.out.println("next steps........................");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -43,5 +43,9 @@
|
|||||||
<groupId>org.springframework.cloud</groupId>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
<artifactId>spring-cloud-starter-feign</artifactId>
|
<artifactId>spring-cloud-starter-feign</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-api</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Reference in New Issue
Block a user