Skip to content

Commit ec28833

Browse files
committed
remove versions from pom, reference parent pom for operator-integration-tests
1 parent 23d8bd1 commit ec28833

File tree

2 files changed

+78
-70
lines changed

2 files changed

+78
-70
lines changed

integration-tests/pom.xml

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -38,65 +38,53 @@
3838
version of hamcrest -->
3939
<groupId>org.hamcrest</groupId>
4040
<artifactId>hamcrest-junit</artifactId>
41-
<version>2.0.0.0</version>
4241
<scope>test</scope>
4342
</dependency>
4443
<dependency>
4544
<groupId>junit</groupId>
4645
<artifactId>junit</artifactId>
47-
<version>${junit-version}</version>
4846
<scope>test</scope>
4947
</dependency>
5048
<dependency>
5149
<groupId>org.glassfish.jersey.core</groupId>
5250
<artifactId>jersey-client</artifactId>
53-
<version>${jersey-version}</version>
5451
</dependency>
5552
<dependency>
5653
<groupId>org.glassfish.jersey.media</groupId>
5754
<artifactId>jersey-media-json-processing</artifactId>
58-
<version>${jersey-version}</version>
5955
</dependency>
6056
<dependency>
6157
<groupId>org.glassfish.jersey.inject</groupId>
6258
<artifactId>jersey-hk2</artifactId>
63-
<version>${jersey-version}</version>
6459
</dependency>
6560
<dependency>
6661
<groupId>com.google.guava</groupId>
6762
<artifactId>guava</artifactId>
68-
<version>${guava-version}</version>
6963
</dependency>
7064
<!-- JSON processing: jackson -->
7165
<dependency>
7266
<groupId>com.fasterxml.jackson.core</groupId>
7367
<artifactId>jackson-core</artifactId>
74-
<version>${jackson-version}</version>
7568
</dependency>
7669
<dependency>
7770
<groupId>com.fasterxml.jackson.core</groupId>
7871
<artifactId>jackson-annotations</artifactId>
79-
<version>${jackson-version}</version>
8072
</dependency>
8173
<dependency>
8274
<groupId>com.fasterxml.jackson.core</groupId>
8375
<artifactId>jackson-databind</artifactId>
84-
<version>${jackson-version}</version>
8576
</dependency>
8677
<dependency>
8778
<groupId>com.fasterxml.jackson.dataformat</groupId>
8879
<artifactId>jackson-dataformat-yaml</artifactId>
89-
<version>${jackson-version}</version>
9080
</dependency>
9181
<dependency>
9282
<groupId>com.fasterxml.jackson.datatype</groupId>
9383
<artifactId>jackson-datatype-joda</artifactId>
94-
<version>${jackson-version}</version>
9584
</dependency>
9685
<dependency>
9786
<groupId>org.yaml</groupId>
9887
<artifactId>snakeyaml</artifactId>
99-
<version>${snakeyaml-version}</version>
10088
</dependency>
10189
<dependency>
10290
<groupId>io.kubernetes</groupId>
@@ -106,17 +94,14 @@
10694
<dependency>
10795
<groupId>javax.jms</groupId>
10896
<artifactId>javax.jms-api</artifactId>
109-
<version>2.0.1</version>
11097
</dependency>
11198
<dependency>
11299
<groupId>javax.xml.bind</groupId>
113100
<artifactId>jaxb-api</artifactId>
114-
<version>2.3.1</version>
115101
</dependency>
116102
<dependency>
117103
<groupId>net.sourceforge.htmlunit</groupId>
118104
<artifactId>htmlunit</artifactId>
119-
<version>2.32</version>
120105
</dependency>
121106
</dependencies>
122107

@@ -125,118 +110,65 @@
125110
<plugin>
126111
<groupId>org.apache.maven.plugins</groupId>
127112
<artifactId>maven-enforcer-plugin</artifactId>
128-
<version>${maven-enforcer-plugin-version}</version>
129-
<executions>
130-
<execution>
131-
<id>enforce-maven</id>
132-
<goals>
133-
<goal>enforce</goal>
134-
</goals>
135-
<configuration>
136-
<rules>
137-
<requireMavenVersion>
138-
<version>${maven.version.range}</version>
139-
</requireMavenVersion>
140-
<requireJavaVersion>
141-
<version>${java.version.range}</version>
142-
</requireJavaVersion>
143-
<requirePluginVersions></requirePluginVersions>
144-
</rules>
145-
</configuration>
146-
</execution>
147-
</executions>
148113
</plugin>
149114
<plugin>
150115
<groupId>org.apache.maven.plugins</groupId>
151116
<artifactId>maven-compiler-plugin</artifactId>
152-
<version>${maven-compiler-plugin-version}</version>
153-
<configuration>
154-
<release>11</release>
155-
<compilerArgs>
156-
<arg>-Xpkginfo:always</arg>
157-
</compilerArgs>
158-
</configuration>
159-
</plugin>
160-
<plugin>
161-
<groupId>com.coveo</groupId>
162-
<artifactId>fmt-maven-plugin</artifactId>
163-
<version>2.8</version>
164-
<executions>
165-
<execution>
166-
<phase>test</phase>
167-
<goals>
168-
<goal>check</goal>
169-
</goals>
170-
</execution>
171-
</executions>
172117
</plugin>
173118
<plugin>
174119
<groupId>org.apache.maven.plugins</groupId>
175120
<artifactId>maven-release-plugin</artifactId>
176-
<version>${maven-release-plugin-version}</version>
177121
</plugin>
178122
<plugin>
179123
<groupId>org.apache.maven.plugins</groupId>
180124
<artifactId>maven-resources-plugin</artifactId>
181-
<version>${maven-resources-plugin-version}</version>
182125
</plugin>
183126
<plugin>
184127
<groupId>org.apache.maven.plugins</groupId>
185128
<artifactId>maven-surefire-plugin</artifactId>
186-
<version>${maven-surefire-plugin-version}</version>
187129
<configuration>
188130
<skipTests>true</skipTests>
189131
</configuration>
190132
</plugin>
191133
<plugin>
192134
<groupId>org.apache.maven.plugins</groupId>
193135
<artifactId>maven-jar-plugin</artifactId>
194-
<version>${maven-jar-plugin-version}</version>
195136
</plugin>
196137
<plugin>
197138
<groupId>org.apache.maven.plugins</groupId>
198139
<artifactId>maven-pmd-plugin</artifactId>
199-
<version>${maven-pmd-plugin-version}</version>
200140
</plugin>
201141
<plugin>
202142
<groupId>org.apache.maven.plugins</groupId>
203143
<artifactId>maven-site-plugin</artifactId>
204-
<version>${maven-site-plugin-version}</version>
205144
</plugin>
206145
<plugin>
207146
<groupId>org.apache.maven.plugins</groupId>
208147
<artifactId>maven-clean-plugin</artifactId>
209-
<version>${maven-clean-plugin-version}</version>
210148
</plugin>
211149
<plugin>
212150
<groupId>org.apache.maven.plugins</groupId>
213151
<artifactId>maven-checkstyle-plugin</artifactId>
214-
<version>${maven-checkstyle-plugin-version}</version>
215152
</plugin>
216153
<plugin>
217154
<groupId>org.apache.maven.plugins</groupId>
218155
<artifactId>maven-install-plugin</artifactId>
219-
<version>${maven-install-plugin-version}</version>
220156
</plugin>
221157
<plugin>
222158
<groupId>org.apache.maven.plugins</groupId>
223159
<artifactId>maven-deploy-plugin</artifactId>
224-
<version>${maven-deploy-plugin-version}</version>
225160
</plugin>
226161
<plugin>
227162
<groupId>com.github.spotbugs</groupId>
228163
<artifactId>spotbugs-maven-plugin</artifactId>
229-
<version>${spotbugs-maven-plugin-version}</version>
230164
</plugin>
231165
<plugin>
232166
<groupId>org.jacoco</groupId>
233167
<artifactId>jacoco-maven-plugin</artifactId>
234-
<version>${jacoco.version}</version>
235168
</plugin>
236169
<plugin>
237170
<groupId>org.codehaus.mojo</groupId>
238171
<artifactId>exec-maven-plugin</artifactId>
239-
<version>1.6.0</version>
240172
<executions>
241173
<execution>
242174
<goals>
@@ -265,7 +197,6 @@
265197
<plugin>
266198
<groupId>org.codehaus.mojo</groupId>
267199
<artifactId>build-helper-maven-plugin</artifactId>
268-
<version>3.0.0</version>
269200
<executions>
270201
<execution>
271202
<id>add-test-source</id>
@@ -299,7 +230,6 @@
299230
<plugin>
300231
<groupId>org.apache.maven.plugins</groupId>
301232
<artifactId>maven-failsafe-plugin</artifactId>
302-
<version>${maven-failsafe-plugin-version}</version>
303233
<configuration>
304234
<argLine>
305235
--illegal-access=permit

pom.xml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
<encoding>UTF-8</encoding>
8787
<failOnViolation>true</failOnViolation>
8888
<violationSeverity>warning</violationSeverity>
89+
<includeTestResources>true</includeTestResources>
8990
</configuration>
9091
</execution>
9192
</executions>
@@ -221,6 +222,17 @@
221222
<artifactId>exec-maven-plugin</artifactId>
222223
<version>${exec-maven-plugin-version}</version>
223224
</plugin>
225+
226+
<plugin>
227+
<groupId>org.codehaus.mojo</groupId>
228+
<artifactId>build-helper-maven-plugin</artifactId>
229+
<version>3.0.0</version>
230+
</plugin>
231+
<plugin>
232+
<groupId>org.apache.maven.plugins</groupId>
233+
<artifactId>maven-failsafe-plugin</artifactId>
234+
<version>${maven-failsafe-plugin-version}</version>
235+
</plugin>
224236
</plugins>
225237
</pluginManagement>
226238

@@ -532,6 +544,72 @@
532544
<artifactId>simplestub</artifactId>
533545
<version>1.2.12</version>
534546
</dependency>
547+
<dependency>
548+
<groupId>org.glassfish.jersey.core</groupId>
549+
<artifactId>jersey-client</artifactId>
550+
<version>${jersey-version}</version>
551+
</dependency>
552+
<dependency>
553+
<groupId>org.glassfish.jersey.media</groupId>
554+
<artifactId>jersey-media-json-processing</artifactId>
555+
<version>${jersey-version}</version>
556+
</dependency>
557+
<dependency>
558+
<groupId>org.glassfish.jersey.inject</groupId>
559+
<artifactId>jersey-hk2</artifactId>
560+
<version>${jersey-version}</version>
561+
</dependency>
562+
<dependency>
563+
<groupId>com.google.guava</groupId>
564+
<artifactId>guava</artifactId>
565+
<version>${guava-version}</version>
566+
</dependency>
567+
<!-- JSON processing: jackson -->
568+
<dependency>
569+
<groupId>com.fasterxml.jackson.core</groupId>
570+
<artifactId>jackson-core</artifactId>
571+
<version>${jackson-version}</version>
572+
</dependency>
573+
<dependency>
574+
<groupId>com.fasterxml.jackson.core</groupId>
575+
<artifactId>jackson-annotations</artifactId>
576+
<version>${jackson-version}</version>
577+
</dependency>
578+
<dependency>
579+
<groupId>com.fasterxml.jackson.core</groupId>
580+
<artifactId>jackson-databind</artifactId>
581+
<version>${jackson-version}</version>
582+
</dependency>
583+
<dependency>
584+
<groupId>com.fasterxml.jackson.dataformat</groupId>
585+
<artifactId>jackson-dataformat-yaml</artifactId>
586+
<version>${jackson-version}</version>
587+
</dependency>
588+
<dependency>
589+
<groupId>com.fasterxml.jackson.datatype</groupId>
590+
<artifactId>jackson-datatype-joda</artifactId>
591+
<version>${jackson-version}</version>
592+
</dependency>
593+
<dependency>
594+
<groupId>org.yaml</groupId>
595+
<artifactId>snakeyaml</artifactId>
596+
<version>${snakeyaml-version}</version>
597+
</dependency>
598+
<dependency>
599+
<groupId>javax.jms</groupId>
600+
<artifactId>javax.jms-api</artifactId>
601+
<version>2.0.1</version>
602+
</dependency>
603+
<dependency>
604+
<groupId>net.sourceforge.htmlunit</groupId>
605+
<artifactId>htmlunit</artifactId>
606+
<version>2.32</version>
607+
</dependency>
608+
<dependency>
609+
<groupId>javax.xml.bind</groupId>
610+
<artifactId>jaxb-api</artifactId>
611+
<version>2.3.1</version>
612+
</dependency>
535613
</dependencies>
536614
</dependencyManagement>
537615

0 commit comments

Comments
 (0)