29
29
<dependency >
30
30
<groupId >com.google.cloud</groupId >
31
31
<artifactId >libraries-bom</artifactId >
32
- <version >26.1.4 </version >
32
+ <version >26.3.0 </version >
33
33
<type >pom</type >
34
34
<scope >import</scope >
35
35
</dependency >
36
36
</dependencies >
37
37
</dependencyManagement >
38
38
39
- <build >
40
- <plugins >
41
- <plugin >
42
- <groupId >org.springframework.boot</groupId >
43
- <artifactId >spring-boot-maven-plugin</artifactId >
44
- </plugin >
45
- </plugins >
46
- </build >
47
-
48
39
<dependencies >
49
40
50
41
<dependency >
51
42
<groupId >com.google.cloud</groupId >
52
43
<artifactId >google-cloud-recaptchaenterprise</artifactId >
44
+ <version >3.9.0</version >
53
45
</dependency >
54
46
<dependency >
55
47
<groupId >com.google.cloud</groupId >
121
113
<dependency >
122
114
<groupId >com.google.api</groupId >
123
115
<artifactId >api-common</artifactId >
116
+ <version >2.2.2</version >
124
117
</dependency >
125
118
<!-- [End_Spring_dependencies] -->
126
119
127
120
</dependencies >
128
121
129
- </project >
122
+ <build >
123
+ <plugins >
124
+ <plugin >
125
+ <groupId >org.springframework.boot</groupId >
126
+ <artifactId >spring-boot-maven-plugin</artifactId >
127
+ <version >2.7.4</version >
128
+ </plugin >
129
+ <!-- The checkstyle plugin is skipped to avoid Javadoc errors thrown in
130
+ the files. Adding the Javadoc comments in the Controller file is against
131
+ the best interest of Demosite project of simpler& straight code access -->
132
+ <plugin >
133
+ <groupId >org.apache.maven.plugins</groupId >
134
+ <artifactId >maven-checkstyle-plugin</artifactId >
135
+ <configuration >
136
+ <skip >true</skip >
137
+ </configuration >
138
+ </plugin >
139
+ <plugin >
140
+ <groupId >org.apache.maven.plugins</groupId >
141
+ <artifactId >maven-surefire-plugin</artifactId >
142
+ <version >3.0.0-M7</version >
143
+ <configuration >
144
+ <includes >
145
+ <include >**/*IT.java</include >
146
+ </includes >
147
+ <skip >false</skip >
148
+ </configuration >
149
+ </plugin >
150
+ <plugin >
151
+ <groupId >org.apache.maven.plugins</groupId >
152
+ <artifactId >maven-failsafe-plugin</artifactId >
153
+ <version >3.0.0-M7</version >
154
+ <configuration >
155
+ <skip >false</skip >
156
+ </configuration >
157
+ <dependencies >
158
+ <dependency >
159
+ <groupId >org.junit.vintage</groupId >
160
+ <artifactId >junit-vintage-engine</artifactId >
161
+ <version >5.8.2</version >
162
+ </dependency >
163
+ </dependencies >
164
+ </plugin >
165
+ </plugins >
166
+ </build >
167
+
168
+ </project >
0 commit comments