@@ -18,7 +18,6 @@ limitations under the License.
18
18
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" >
19
19
<ignoreVersions >
20
20
<ignoreVersion type =" regex" >.*-alpha.*</ignoreVersion >
21
- <ignoreVersion type =" regex" >.*-beta.*</ignoreVersion >
22
21
<ignoreVersion type =" regex" >.*-b[0-9]*</ignoreVersion >
23
22
<ignoreVersion type =" regex" >.*-pre.*</ignoreVersion >
24
23
<ignoreVersion type =" regex" >.*public_draft</ignoreVersion >
@@ -32,6 +31,14 @@ limitations under the License.
32
31
<ignoreVersion type =" regex" >.*</ignoreVersion >
33
32
</ignoreVersions >
34
33
</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 >
35
42
<!-- SendGrid 3 libraries are broken in App Engine standard environment -->
36
43
<rule groupId =" com.sendgrid" artifactId =" sendgrid-java" comparisonMethod =" maven" >
37
44
<ignoreVersions >
@@ -44,5 +51,23 @@ limitations under the License.
44
51
<ignoreVersion type =" regex" >v2.*</ignoreVersion >
45
52
</ignoreVersions >
46
53
</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 >
47
72
</rules >
48
73
</ruleset >
0 commit comments