<version>${immutable.version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>com.spotify</groupId>
+ <artifactId>docker-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+
<!-- LOGGING dependencies> -->
<dependency>
MAINTAINER Przemysław Wąsala "przemyslaw.wasala@nokia.com"
-ADD /prh-app-server/target/prh-app-server.jar /opt/app/Prh/
+ADD /target/prh-app-server.jar /opt/app/Prh/
WORKDIR /opt/app/Prh
ENV HOME /opt/app/Prh
EXPOSE 8100
-CMD [ "java", "-jar", "prh-app-server.jar" ]
\ No newline at end of file
+RUN [ "java", "-jar", "prh-app-server.jar" ]
\ No newline at end of file
<artifactId>prh-app-server</artifactId>
<groupId>org.onap.dcaegen2.services.prh</groupId>
<packaging>jar</packaging>
-
+ <properties>
+ <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
+ <onap.nexus.dockerregistry.daily>${env.MVN_DOCKERREGISTRY_DAILY}
+ </onap.nexus.dockerregistry.daily>
+ </properties>
<build>
<plugins>
<plugin>
<mainClass>org.onap.dcaegen2.services.prh.MainApp</mainClass>
</configuration>
</plugin>
+ <!-- This plugin may go away in favor of a custom Dockerfile provided by Carsten and co. -->
+ <plugin>
+ <groupId>com.spotify</groupId>
+ <artifactId>docker-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <imageName>
+ ${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}
+ </imageName>
+ <dockerDirectory>docker</dockerDirectory>
+ <resources>
+ <resource>
+ <targetPath>/</targetPath>
+ <directory>${project.build.directory}</directory>
+ <include>${project.build.finalName}.jar</include>
+ </resource>
+ </resources>
+ <imageTags>
+ <imageTag>${project.version}-${maven.build.timestamp}</imageTag>
+ <imageTag>latest</imageTag>
+ </imageTags>
+ <serverId>${onap.nexus.dockerregistry.daily}</serverId>
+ </configuration>
+ </plugin>
+
</plugins>
</build>
<dependencies>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
+ <dependency>
+ <groupId>com.spotify</groupId>
+ <artifactId>docker-maven-plugin</artifactId>
+ </dependency>
<!-- LOGGING DEPENDENCIES-->
<dependency>
import static org.mockito.Mockito.atLeast;
import static org.mockito.Mockito.verify;
-import java.time.Duration;
-import java.util.concurrent.Callable;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
@Test
- public void testScheduling() throws InterruptedException {
+ public void testScheduling() {
final ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
executorService.scheduleWithFixedDelay(this::verifyDmaapConsumerTask, 0, WAIT_FOR_SCHEDULING, TimeUnit.SECONDS);
}