Skip to content

Commit

Permalink
Define version of 'checker-compat-qual' in dependencyManagement
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Oct 12, 2020
1 parent f91f6fe commit 70eaaf7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<module.status>integration</module.status>
<module.parentVersion>HEAD-jre-SNAPSHOT</module.parentVersion>
<variant.jvmVersion>6</variant.jvmVersion>
<variant.checkerframework>"checker-compat-qual", "version": { "requires": "2.5.5" }</variant.checkerframework>
<variant.checkerframework>checker-compat-qual</variant.checkerframework>
<otherVariant.version>HEAD-jre-SNAPSHOT</otherVariant.version>
<otherVariant.jvmVersion>8</otherVariant.jvmVersion>
<otherVariant.checkerframework>"checker-qual"</otherVariant.checkerframework>
<otherVariant.checkerframework>checker-qual</otherVariant.checkerframework>
</properties>
<issueManagement>
<system>GitHub Issues</system>
Expand Down
4 changes: 2 additions & 2 deletions guava/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
{
"group": "org.checkerframework",
"module": ${variant.checkerframework}
"module": "${variant.checkerframework}"
},
{
"group": "com.google.errorprone",
Expand Down Expand Up @@ -168,7 +168,7 @@
},
{
"group": "org.checkerframework",
"module": ${otherVariant.checkerframework}
"module": "${otherVariant.checkerframework}"
},
{
"group": "com.google.errorprone",
Expand Down
11 changes: 9 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<module.status>integration</module.status>
<module.parentVersion>HEAD-jre-SNAPSHOT</module.parentVersion>
<variant.jvmVersion>8</variant.jvmVersion>
<variant.checkerframework>"checker-qual"</variant.checkerframework>
<variant.checkerframework>checker-qual</variant.checkerframework>
<otherVariant.version>HEAD-android-SNAPSHOT</otherVariant.version>
<otherVariant.jvmVersion>6</otherVariant.jvmVersion>
<otherVariant.checkerframework>"checker-compat-qual", "version": { "requires": "2.5.5" }</otherVariant.checkerframework>
<otherVariant.checkerframework>checker-compat-qual</otherVariant.checkerframework>
</properties>
<issueManagement>
<system>GitHub Issues</system>
Expand Down Expand Up @@ -262,10 +262,17 @@
<version>3.0.2</version>
</dependency>
<dependency>
<!-- This variant of the checkerframework is used by the 'jre' variant of Guava -->
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<!-- This variant of the checkerframework is used by the 'android' variant of Guava -->
<groupId>org.checkerframework</groupId>
<artifactId>checker-compat-qual</artifactId>
<version>2.5.5</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
Expand Down

0 comments on commit 70eaaf7

Please sign in to comment.