Skip to content

Commit

Permalink
Fix failing build, caused by missing dependency
Browse files Browse the repository at this point in the history
The dependency

<dependency>
    <groupId>org.jenkins-ci</groupId>
    <artifactId>annotation-indexer</artifactId>
    <version>1.4</version>
</dependency>

is present on maven central, but the pom refers to

<dependency>
    <groupId>org.jenkins-ci</groupId>
    <artifactId>jenkins</artifactId>
    <version>1.26</version>
</dependency>

as the parent. This causes the build to fail, as maven fails to
resolve all dependencies.
  • Loading branch information
matthiasblaesing committed Jun 1, 2018
1 parent 64aa6a8 commit 3e96518
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions annotation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,11 @@
<version>1.4</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>Jenkins-CI</id>
<url>http://repo.jenkins-ci.org/releases/</url>
</repository>
</repositories>
</project>

0 comments on commit 3e96518

Please sign in to comment.