Skip to content

Commit

Permalink
Adding JCASC support. Look ma no hands!
Browse files Browse the repository at this point in the history
  • Loading branch information
akaryakina committed Jul 16, 2021
1 parent 2333640 commit 994460e
Show file tree
Hide file tree
Showing 12 changed files with 467 additions and 344 deletions.
28 changes: 24 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.18</version>
<version>4.19</version>
</parent>

<artifactId>fortify</artifactId>
Expand Down Expand Up @@ -106,7 +106,7 @@
<artifactId>workflow-step-api</artifactId>
</dependency>

<!-- Fortify REST API client published on bintray -->
<!-- Fortify REST API client published on mavencentral -->
<dependency>
<groupId>com.fortify</groupId>
<artifactId>ssc-restapi-client</artifactId>
Expand All @@ -115,7 +115,19 @@
<scope>compile</scope>
</dependency>

<!-- for Configuration as a Code -->
<dependency>
<groupId>io.jenkins</groupId>
<artifactId>configuration-as-code</artifactId>
<scope>compile</scope>
</dependency>

<!-- for local testing -->
<dependency>
<groupId>io.jenkins.configuration-as-code</groupId>
<artifactId>test-harness</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-api</artifactId>
Expand Down Expand Up @@ -227,13 +239,21 @@
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<failOnError>false</failOnError>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<configuration>
<loggers>
<!-- for local pipeline testing -->
<org.jenkinsci.plugins.workflow>FINE</org.jenkinsci.plugins.workflow>
</loggers>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
Loading

0 comments on commit 994460e

Please sign in to comment.