Skip to content

Commit a330e98

Browse files
committed
fix pom
1 parent 51bc60a commit a330e98

File tree

2 files changed

+50
-71
lines changed

2 files changed

+50
-71
lines changed

recaptcha_enterprise/pom.xml

Lines changed: 0 additions & 60 deletions
This file was deleted.

recaptcha_enterprise/snippets/src/pom.xml renamed to recaptcha_enterprise/snippets/pom.xml

Lines changed: 50 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,19 @@
2929
<dependency>
3030
<groupId>com.google.cloud</groupId>
3131
<artifactId>libraries-bom</artifactId>
32-
<version>26.1.4</version>
32+
<version>26.3.0</version>
3333
<type>pom</type>
3434
<scope>import</scope>
3535
</dependency>
3636
</dependencies>
3737
</dependencyManagement>
3838

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-
4839
<dependencies>
4940

5041
<dependency>
5142
<groupId>com.google.cloud</groupId>
5243
<artifactId>google-cloud-recaptchaenterprise</artifactId>
44+
<version>3.9.0</version>
5345
</dependency>
5446
<dependency>
5547
<groupId>com.google.cloud</groupId>
@@ -121,9 +113,56 @@
121113
<dependency>
122114
<groupId>com.google.api</groupId>
123115
<artifactId>api-common</artifactId>
116+
<version>2.2.2</version>
124117
</dependency>
125118
<!-- [End_Spring_dependencies] -->
126119

127120
</dependencies>
128121

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

Comments
 (0)