@@ -18,7 +18,6 @@ limitations under the License.
1818 xsi : schemaLocation =" http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 http://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd" >
1919 <ignoreVersions >
2020 <ignoreVersion type =" regex" >.*-alpha.*</ignoreVersion >
21- <ignoreVersion type =" regex" >.*-beta.*</ignoreVersion >
2221 <ignoreVersion type =" regex" >.*-b[0-9]*</ignoreVersion >
2322 <ignoreVersion type =" regex" >.*-pre.*</ignoreVersion >
2423 <ignoreVersion type =" regex" >.*public_draft</ignoreVersion >
@@ -32,6 +31,14 @@ limitations under the License.
3231 <ignoreVersion type =" regex" >.*</ignoreVersion >
3332 </ignoreVersions >
3433 </rule >
34+ <!-- MySQL connector should not be manually updated.
35+ Version 5.x needs to be used for Java 7 support.
36+ https://github.com/GoogleCloudPlatform/java-docs-samples/pull/456#discussion_r92676013 -->
37+ <rule groupId =" mysql" artifactId =" mysql-connector-java" comparisonMethod =" maven" >
38+ <ignoreVersions >
39+ <ignoreVersion type =" regex" >.*</ignoreVersion >
40+ </ignoreVersions >
41+ </rule >
3542 <!-- SendGrid 3 libraries are broken in App Engine standard environment -->
3643 <rule groupId =" com.sendgrid" artifactId =" sendgrid-java" comparisonMethod =" maven" >
3744 <ignoreVersions >
@@ -44,5 +51,23 @@ limitations under the License.
4451 <ignoreVersion type =" regex" >v2.*</ignoreVersion >
4552 </ignoreVersions >
4653 </rule >
54+ <!-- Ignore beta versions of the App Engine Maven plugin -->
55+ <rule groupId =" com.google.cloud.tools" artifactId =" appengine-maven-plugin" comparisonMethod =" maven" >
56+ <ignoreVersions >
57+ <ignoreVersion type =" regex" >.*-beta.*</ignoreVersion >
58+ </ignoreVersions >
59+ </rule >
60+ <!-- Ignore beta versions of Mockito -->
61+ <rule groupId =" org.mockito" artifactId =" mockito-all" comparisonMethod =" maven" >
62+ <ignoreVersions >
63+ <ignoreVersion type =" regex" >.*-beta.*</ignoreVersion >
64+ </ignoreVersions >
65+ </rule >
66+ <!-- Ignore beta versions of Xmemcached-->
67+ <rule groupId =" com.googlecode.xmemcached" artifactId =" xmemcached" comparisonMethod =" maven" >
68+ <ignoreVersions >
69+ <ignoreVersion type =" regex" >.*-beta.*</ignoreVersion >
70+ </ignoreVersions >
71+ </rule >
4772 </rules >
4873</ruleset >
0 commit comments