Skip to content

Commit

Permalink
Fix Maven dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
smillst committed May 31, 2019
1 parent e4575c5 commit c57933b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/developer/release/release_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def clone_or_update_repos(auto):
clone_from_scratch_or_update(LIVE_CHECKLINK, CHECKLINK, clone_from_scratch, False)
clone_from_scratch_or_update(LIVE_PLUME_BIB, PLUME_BIB, clone_from_scratch, False)
clone_from_scratch_or_update(LIVE_STUBPARSER, STUBPARSER, clone_from_scratch, False)
clone_from_scratch_or_update(LIVE_ANNO_REPO, ANNO_TOOLS, clone_from_scratch, False)
# clone_from_scratch_or_update(LIVE_ANNO_REPO, ANNO_TOOLS, clone_from_scratch, False)

This comment has been minimized.

Copy link
@wmdietl

wmdietl Jun 12, 2019

Member

@smillst Was this line commented-out in error? It doesn't seem to be related to the added maven dependencies.

This comment has been minimized.

Copy link
@smillst

smillst Jun 17, 2019

Author Member

This change should have been in a separate commit, but it's not an error. If annotation-tools is cloned here then it is not later cloned from the "interim" repository and then commits are pushed to typetools/master before the release is complete. I'll add a comment to this file.


def get_afu_date(building_afu):
"""If the AFU is being built, return the current date, otherwise return the
Expand Down
22 changes: 22 additions & 0 deletions maven-artifacts/poms/javacutilPom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,26 @@
<url>https://checkerframework.org/dev/m2-repo</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<version><!-- checker-framework-version -->2.8.1<!-- /checker-framework-version --></version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.plumelib</groupId>
<artifactId>plume-util</artifactId>
<!-- Keep version number in sync with ../../javacutil/build.gradle . -->
<version>1.0.6</version>
<type>jar</type>
<exclusions>
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

</project>
6 changes: 6 additions & 0 deletions maven-artifacts/release/javacutilReleasePom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
<!-- Keep version number in sync with ../../javacutil/build.gradle . -->
<version>1.0.6</version>
<type>jar</type>
<exclusions>
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down

0 comments on commit c57933b

Please sign in to comment.