Skip to content

Commit

Permalink
fixed dependencies needed to build cucumber report module after the o…
Browse files Browse the repository at this point in the history
…thers
  • Loading branch information
angelo.andreussi authored and Coduz committed May 4, 2023
1 parent 7511af0 commit 3390072
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion dev-tools/cucumber-reports/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<packaging>pom</packaging>

<build>
<finalName>kapua-cucumber-report</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -40,7 +41,6 @@
<descriptors>
<descriptor>src/main/descriptors/kapua-cucumber-report.xml</descriptor>
</descriptors>
<finalName>kapua-cucumber-report</finalName>
<appendAssemblyId>false</appendAssemblyId>
<attach>false</attach><!-- unable to attach a directory -->
</configuration>
Expand All @@ -49,4 +49,33 @@
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-account-test</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-user-test</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-device-registry-test</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-job-test</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-tag-test</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-qa-integration</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>

0 comments on commit 3390072

Please sign in to comment.