Skip to content

Commit

Permalink
Updating Jenkinsfile and Pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
aytuncbeken committed Sep 24, 2023
1 parent 50f870a commit ffa5bd3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
11 changes: 10 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
buildPlugin()
/*
See the documentation for more options:
https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 11],
])
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ THE SOFTWARE.
<tag>HEAD</tag>
</scm>
<properties>
<jenkins.version>2.361.1</jenkins.version>
<jenkins.version>2.361.4</jenkins.version>
<cloudbees-bitbucket-branch-source.version>796.v6cb_1559e1673</cloudbees-bitbucket-branch-source.version>
<java.version>1.8</java.version>
<java.version>11</java.version>
<workflow-aggregator.version>596.v8c21c963d92d</workflow-aggregator.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
</properties>
Expand Down Expand Up @@ -155,6 +155,11 @@ THE SOFTWARE.
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.5</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down

0 comments on commit ffa5bd3

Please sign in to comment.