Skip to content

Commit 9b8140a

Browse files
committed
Move into it submodule
See #108
1 parent b3819fb commit 9b8140a

File tree

63 files changed

+174
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+174
-138
lines changed

demo/integration-tests/pom.xml

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>software.xdev.sse.demo</groupId>
9+
<artifactId>demo</artifactId>
10+
<version>1.2.1-SNAPSHOT</version>
11+
</parent>
12+
13+
<groupId>software.xdev.sse.demo.it</groupId>
14+
<artifactId>integration-tests</artifactId>
15+
<version>1.2.1-SNAPSHOT</version>
16+
<packaging>pom</packaging>
17+
18+
<modules>
19+
<module>tci-db</module>
20+
<module>tci-oidc</module>
21+
<module>tci-selenium</module>
22+
<module>tci-testcontainers</module>
23+
<module>tci-webapp</module>
24+
<module>tci-webapp-rest</module>
25+
<module>tci-webapp-vaadin</module>
26+
<module>webapp-it-base</module>
27+
<module>webapp-rest-it</module>
28+
<module>webapp-vaadin-it</module>
29+
</modules>
30+
31+
<dependencyManagement>
32+
<dependencies>
33+
<!-- Internal -->
34+
<dependency>
35+
<groupId>software.xdev.sse.demo.it</groupId>
36+
<artifactId>tci-db</artifactId>
37+
<version>1.2.1-SNAPSHOT</version>
38+
</dependency>
39+
40+
<dependency>
41+
<groupId>software.xdev.sse.demo.it</groupId>
42+
<artifactId>tci-oidc</artifactId>
43+
<version>1.2.1-SNAPSHOT</version>
44+
</dependency>
45+
46+
<dependency>
47+
<groupId>software.xdev.sse.demo.it</groupId>
48+
<artifactId>tci-selenium</artifactId>
49+
<version>1.2.1-SNAPSHOT</version>
50+
</dependency>
51+
52+
<dependency>
53+
<groupId>software.xdev.sse.demo.it</groupId>
54+
<artifactId>tci-webapp</artifactId>
55+
<version>1.2.1-SNAPSHOT</version>
56+
</dependency>
57+
58+
<dependency>
59+
<groupId>software.xdev.sse.demo.it</groupId>
60+
<artifactId>tci-webapp-rest</artifactId>
61+
<version>1.2.1-SNAPSHOT</version>
62+
</dependency>
63+
64+
<dependency>
65+
<groupId>software.xdev.sse.demo.it</groupId>
66+
<artifactId>tci-webapp-vaadin</artifactId>
67+
<version>1.2.1-SNAPSHOT</version>
68+
</dependency>
69+
70+
<dependency>
71+
<groupId>software.xdev.sse.demo.it</groupId>
72+
<artifactId>tci-testcontainers</artifactId>
73+
<version>1.2.1-SNAPSHOT</version>
74+
</dependency>
75+
76+
<dependency>
77+
<groupId>software.xdev.sse.demo.it</groupId>
78+
<artifactId>webapp-it-base</artifactId>
79+
<version>1.2.1-SNAPSHOT</version>
80+
</dependency>
81+
82+
<dependency>
83+
<groupId>software.xdev</groupId>
84+
<artifactId>tci-base</artifactId>
85+
<version>1.1.3</version>
86+
</dependency>
87+
88+
<!-- Selenium -->
89+
<dependency>
90+
<groupId>org.seleniumhq.selenium</groupId>
91+
<artifactId>selenium-dependencies-bom</artifactId>
92+
<version>4.33.0</version>
93+
<type>pom</type>
94+
<scope>import</scope>
95+
</dependency>
96+
97+
<!-- Tests -->
98+
<!-- Unit-Tests -->
99+
<dependency>
100+
<groupId>org.junit</groupId>
101+
<artifactId>junit-bom</artifactId>
102+
<version>5.13.2</version>
103+
<type>pom</type>
104+
<scope>import</scope>
105+
</dependency>
106+
107+
<!-- Test Containers -->
108+
<dependency>
109+
<groupId>software.xdev</groupId>
110+
<artifactId>testcontainers-selenium</artifactId>
111+
<version>1.2.3</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>software.xdev</groupId>
115+
<artifactId>testcontainers-junit4-mock</artifactId>
116+
<version>1.0.2</version>
117+
</dependency>
118+
<dependency>
119+
<groupId>software.xdev</groupId>
120+
<artifactId>testcontainers-advanced-imagebuilder</artifactId>
121+
<version>1.1.1</version>
122+
</dependency>
123+
<dependency>
124+
<groupId>org.testcontainers</groupId>
125+
<artifactId>testcontainers-bom</artifactId>
126+
<version>1.21.2</version>
127+
<type>pom</type>
128+
<scope>import</scope>
129+
</dependency>
130+
131+
<!-- Utility for proxies in tests -->
132+
<dependency>
133+
<groupId>org.javassist</groupId>
134+
<artifactId>javassist</artifactId>
135+
<version>3.30.2-GA</version>
136+
</dependency>
137+
</dependencies>
138+
</dependencyManagement>
139+
</project>

demo/tci-db/pom.xml renamed to demo/integration-tests/tci-db/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-db</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-testcontainers</artifactId>
1818
</dependency>
1919
<dependency>

demo/tci-oidc/pom.xml renamed to demo/integration-tests/tci-oidc/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-oidc</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-testcontainers</artifactId>
1818
</dependency>
1919

demo/tci-selenium/pom.xml renamed to demo/integration-tests/tci-selenium/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-selenium</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-testcontainers</artifactId>
1818
</dependency>
1919

demo/tci-testcontainers/pom.xml renamed to demo/integration-tests/tci-testcontainers/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-testcontainers</artifactId>

demo/tci-webapp-rest/pom.xml renamed to demo/integration-tests/tci-webapp-rest/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-webapp-rest</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-webapp</artifactId>
1818
</dependency>
1919
</dependencies>

demo/tci-webapp-vaadin/pom.xml renamed to demo/integration-tests/tci-webapp-vaadin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-webapp-vaadin</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-webapp</artifactId>
1818
</dependency>
1919
</dependencies>

demo/tci-webapp/pom.xml renamed to demo/integration-tests/tci-webapp/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>tci-webapp</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-testcontainers</artifactId>
1818
</dependency>
1919
<dependency>

demo/webapp-it-base/pom.xml renamed to demo/integration-tests/webapp-it-base/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>webapp-it-base</artifactId>
1313

1414
<dependencies>
1515
<dependency>
16-
<groupId>software.xdev.sse.demo</groupId>
16+
<groupId>software.xdev.sse.demo.it</groupId>
1717
<artifactId>tci-db</artifactId>
1818
</dependency>
1919
<dependency>
20-
<groupId>software.xdev.sse.demo</groupId>
20+
<groupId>software.xdev.sse.demo.it</groupId>
2121
<artifactId>tci-oidc</artifactId>
2222
</dependency>
2323
<dependency>
24-
<groupId>software.xdev.sse.demo</groupId>
24+
<groupId>software.xdev.sse.demo.it</groupId>
2525
<artifactId>tci-selenium</artifactId>
2626
</dependency>
2727
<dependency>
28-
<groupId>software.xdev.sse.demo</groupId>
28+
<groupId>software.xdev.sse.demo.it</groupId>
2929
<artifactId>tci-webapp</artifactId>
3030
</dependency>
3131

demo/webapp-rest-it/pom.xml renamed to demo/integration-tests/webapp-rest-it/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>webapp-rest-it</artifactId>
@@ -18,12 +18,12 @@
1818

1919
<dependencies>
2020
<dependency>
21-
<groupId>software.xdev.sse.demo</groupId>
21+
<groupId>software.xdev.sse.demo.it</groupId>
2222
<artifactId>webapp-it-base</artifactId>
2323
<scope>test</scope>
2424
</dependency>
2525
<dependency>
26-
<groupId>software.xdev.sse.demo</groupId>
26+
<groupId>software.xdev.sse.demo.it</groupId>
2727
<artifactId>tci-webapp-rest</artifactId>
2828
<scope>test</scope>
2929
</dependency>

demo/webapp-vaadin-it/pom.xml renamed to demo/integration-tests/webapp-vaadin-it/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
8-
<groupId>software.xdev.sse.demo</groupId>
9-
<artifactId>demo</artifactId>
8+
<groupId>software.xdev.sse.demo.it</groupId>
9+
<artifactId>integration-tests</artifactId>
1010
<version>1.2.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>webapp-vaadin-it</artifactId>
@@ -18,12 +18,12 @@
1818

1919
<dependencies>
2020
<dependency>
21-
<groupId>software.xdev.sse.demo</groupId>
21+
<groupId>software.xdev.sse.demo.it</groupId>
2222
<artifactId>webapp-it-base</artifactId>
2323
<scope>test</scope>
2424
</dependency>
2525
<dependency>
26-
<groupId>software.xdev.sse.demo</groupId>
26+
<groupId>software.xdev.sse.demo.it</groupId>
2727
<artifactId>tci-webapp-vaadin</artifactId>
2828
<scope>test</scope>
2929
</dependency>

0 commit comments

Comments
 (0)