Skip to content

Commit

Permalink
Merge pull request #3769 from Agnul97/fix-cucumberReportModuleOrder
Browse files Browse the repository at this point in the history
FIX - fixed dependencies in cucumber report module
  • Loading branch information
Coduz authored May 4, 2023
2 parents 197fd81 + 0aa2ae4 commit 9050987
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 @@ -26,6 +26,7 @@
<packaging>pom</packaging>

<build>
<finalName>kapua-cucumber-report</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -41,7 +42,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 @@ -50,4 +50,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 9050987

Please sign in to comment.