@@ -81,4 +81,90 @@ limitations under the License.
8181
8282
8383 </dependencies >
84+ <build >
85+ <plugins >
86+ <plugin >
87+ <groupId >org.apache.maven.plugins</groupId >
88+ <artifactId >maven-surefire-plugin</artifactId >
89+ <executions >
90+ <execution >
91+ <id >default-test</id >
92+ <phase >none</phase >
93+ </execution >
94+ <execution >
95+ <id >integration-tests</id >
96+ <phase >none</phase >
97+ </execution >
98+ <execution >
99+ <id >end-to-end-tests</id >
100+ <phase >integration-test</phase >
101+ <goals >
102+ <goal >test</goal >
103+ </goals >
104+ <configuration >
105+ <includes >
106+ <include >**/*.*</include >
107+ </includes >
108+ <forkCount >1</forkCount >
109+ <systemPropertyVariables >
110+ <moduleDir >${project.basedir} </moduleDir >
111+ </systemPropertyVariables >
112+ </configuration >
113+ </execution >
114+ </executions >
115+ </plugin >
116+ <plugin >
117+ <groupId >org.apache.maven.plugins</groupId >
118+ <artifactId >maven-dependency-plugin</artifactId >
119+ <executions >
120+ <execution >
121+ <id >copy-jars</id >
122+ <phase >process-resources</phase >
123+ <goals >
124+ <goal >copy</goal >
125+ </goals >
126+ </execution >
127+ </executions >
128+ <configuration >
129+ <artifactItems >
130+ <artifactItem >
131+ <groupId >org.apache.flink</groupId >
132+ <artifactId >flink-connector-clickhouse</artifactId >
133+ <version >${project.version} </version >
134+ <type >jar</type >
135+ <overWrite >true</overWrite >
136+ <outputDirectory >${project.build.directory} /dependencies</outputDirectory >
137+ </artifactItem >
138+ <artifactItem >
139+ <groupId >org.apache.httpcomponents.client5</groupId >
140+ <artifactId >httpclient5</artifactId >
141+ <version >5.2.1</version >
142+ <type >jar</type >
143+ <overWrite >true</overWrite >
144+ <outputDirectory >${project.build.directory} /dependencies</outputDirectory >
145+ </artifactItem >
146+ <artifactItem >
147+ <groupId >org.apache.httpcomponents.core5</groupId >
148+ <artifactId >httpcore5</artifactId >
149+ <version >5.2</version >
150+ <type >jar</type >
151+ <overWrite >true</overWrite >
152+ <outputDirectory >${project.build.directory} /dependencies</outputDirectory >
153+ </artifactItem >
154+ <artifactItem >
155+ <groupId >org.apache.httpcomponents.core5</groupId >
156+ <artifactId >httpcore5-h2</artifactId >
157+ <version >5.2</version >
158+ <type >jar</type >
159+ <overWrite >true</overWrite >
160+ <outputDirectory >${project.build.directory} /dependencies</outputDirectory >
161+ </artifactItem >
162+ </artifactItems >
163+
164+
165+
166+ </configuration >
167+ </plugin >
168+ </plugins >
169+ </build >
84170</project >
0 commit comments