Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[JENKINS-30125] Initial interfacing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Muñiz committed Aug 25, 2015
1 parent 5871068 commit be519ab
Show file tree
Hide file tree
Showing 4 changed files with 298 additions and 115 deletions.
26 changes: 24 additions & 2 deletions pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-pom</artifactId>
<version>1.59</version>
<version>1.63</version>
</parent>

<artifactId>analysis-collector</artifactId>
Expand All @@ -19,11 +19,15 @@
Additionally, the plug-in provides health reporting and build stability based on these combined results.
</description>

<properties>
<workflow.version>1.4</workflow.version>
</properties>

<dependencies>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-core</artifactId>
<version>1.73-SNAPSHOT</version>
<version>1.73-beta-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
Expand Down Expand Up @@ -66,6 +70,24 @@
<version>4.35</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-cps</artifactId>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-basic-steps</artifactId>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<scm>
Expand Down

0 comments on commit be519ab

Please sign in to comment.