Skip to content

Commit 255726f

Browse files
authored
Merge pull request #8781 from aloubyansky/move-custom-manifest-tests
Moved custom manifest tests out of maven IT to its own packaging IT module
2 parents 1877033 + 6583828 commit 255726f

File tree

10 files changed

+65
-0
lines changed

10 files changed

+65
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>io.quarkus</groupId>
9+
<artifactId>quarkus-integration-tests-parent</artifactId>
10+
<version>999-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>quarkus-integration-test-packaging</artifactId>
14+
15+
<name>Quarkus - Integration Tests - Packaging</name>
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.assertj</groupId>
20+
<artifactId>assertj-core</artifactId>
21+
<scope>test</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>junit</groupId>
25+
<artifactId>junit</artifactId>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>io.quarkus</groupId>
30+
<artifactId>quarkus-junit5-internal</artifactId>
31+
<scope>test</scope>
32+
</dependency>
33+
</dependencies>
34+
35+
<build>
36+
<plugins>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-surefire-plugin</artifactId>
40+
<configuration>
41+
<systemPropertyVariables>
42+
<!--suppress MavenModelInspection -->
43+
<maven.home>${maven.home}</maven.home>
44+
<maven.repo>${settings.localRepository}</maven.repo>
45+
<project.version>${project.version}</project.version>
46+
</systemPropertyVariables>
47+
</configuration>
48+
</plugin>
49+
</plugins>
50+
</build>
51+
<profiles>
52+
<profile>
53+
<id>basic-test-suite</id>
54+
<activation>
55+
<property>
56+
<name>basicTests</name>
57+
</property>
58+
</activation>
59+
<properties>
60+
<maven.test.skip>true</maven.test.skip>
61+
</properties>
62+
</profile>
63+
</profiles>
64+
</project>

integration-tests/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
<module>injectmock</module>
106106
<module>reactive-messaging-amqp</module>
107107
<module>rest-client</module>
108+
<module>packaging</module>
108109
</modules>
109110

110111
<build>

0 commit comments

Comments
 (0)