Skip to content

Commit

Permalink
Add annotations in JSDocInfo to unblock nullness checking.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=144732026
  • Loading branch information
tbreisacher authored and blickly committed Jan 18, 2017
1 parent 26a5dd0 commit 6c7b3a8
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 11 deletions.
7 changes: 7 additions & 0 deletions pom-main-shaded.xml
Expand Up @@ -71,6 +71,13 @@
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.checkerframework:checker</exclude>
<exclude>org.checkerframework:checker-qual</exclude>
<exclude>org.checkerframework:jdk7</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>com.google.javascript:closure-compiler</artifact>
Expand Down
15 changes: 15 additions & 0 deletions pom-main.xml
Expand Up @@ -137,6 +137,21 @@
<!-- See <dependencyManagement> in pom.xml for <version> -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>jdk7</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 6c7b3a8

Please sign in to comment.