Skip to content

Commit

Permalink
Merge pull request #52 from SamBarker/KroxySystemTests-SB
Browse files Browse the repository at this point in the history
Kroxy system tests sb
  • Loading branch information
franvila authored Nov 21, 2023
2 parents 56f6ba9 + 902dd13 commit 4ac3f46
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 131 deletions.
39 changes: 0 additions & 39 deletions kroxylicious-enforcer-rules/pom.xml

This file was deleted.

This file was deleted.

26 changes: 1 addition & 25 deletions kroxylicious-systemtests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,35 +121,11 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<dependencies>
<dependency>
<groupId>io.kroxylicious</groupId>
<artifactId>kroxylicious-enforcer-rules</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>enforce-systemtest-isolation</id>
<configuration>
<rules>
<systemTestIsolationRule implementation="io.kroxylicious.enforcer.rules.SystemTestIsolationRule"/>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
</project>
</project>
24 changes: 22 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@
</dependencyManagement>

<modules>
<module>kroxylicious-enforcer-rules</module>
<module>kroxylicious-kms</module>
<module>kroxylicious-kms-provider-kroxylicious-inmemory</module>
<module>kroxylicious-bom</module>
Expand Down Expand Up @@ -648,6 +647,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-systemtest-isolation</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>io.kroxylicious:kroxylicious-systemtests</exclude>
</excludes>
</bannedDependencies>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -942,4 +962,4 @@
</build>
</profile>
</profiles>
</project>
</project>

0 comments on commit 4ac3f46

Please sign in to comment.