forked from SoftwareBuildService/log-file-filter-plugin
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Global configuration was not persisted at all (in most cases).
- Loading branch information
Showing
7 changed files
with
131 additions
and
206 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,24 +4,21 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>2.17</version> | ||
<version>3.43</version> | ||
</parent> | ||
|
||
<groupId>com.tsystems.sbs</groupId> | ||
<artifactId>log-file-filter</artifactId> | ||
<version>1.11-SNAPSHOT</version> | ||
<packaging>hpi</packaging> | ||
|
||
<properties> | ||
<!-- Baseline Jenkins version you use to build the plugin. Users must have | ||
this version or newer to run. --> | ||
<jenkins.version>2.60.3</jenkins.version> | ||
<!-- Java Level to use. Java 7 required when using core >= 1.612 --> | ||
<java.level>7</java.level> | ||
<jenkins.version>2.107.3</jenkins.version> | ||
<java.level>8</java.level> | ||
<!-- Jenkins Test Harness version you use to test the plugin. --> | ||
<!-- For Jenkins version >= 1.580.1 use JTH 2.x or higher. --> | ||
<jenkins-test-harness.version>2.13</jenkins-test-harness.version> | ||
<hpi-plugin.version>1.95</hpi-plugin.version> | ||
<!-- Other properties you may want to use: ~ stapler-plugin.version: The | ||
<!-- <jenkins-test-harness.version>2.13</jenkins-test-harness.version> --> | ||
<!-- Other properties you may want to use: ~ stapler-plugin.version: The | ||
Stapler Maven plugin version required by the plugin. --> | ||
</properties> | ||
|
||
|
@@ -49,9 +46,6 @@ | |
<!-- If you want this to appear on the wiki page: <developers> <developer> | ||
<id>bhacker</id> <name>Bob Q. Hacker</name> <email>[email protected]</email> | ||
</developer> </developers> --> | ||
<!-- Assuming you want to host on @jenkinsci: <scm> <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:jenkinsci/${project.artifactId}-plugin.git</developerConnection> | ||
<url>http://github.com/jenkinsci/${project.artifactId}-plugin</url> </scm> --> | ||
<repositories> | ||
<repository> | ||
<id>repo.jenkins-ci.org</id> | ||
|
@@ -113,7 +107,7 @@ | |
<dependency> | ||
<groupId>org.jenkins-ci.plugins.workflow</groupId> | ||
<artifactId>workflow-step-api</artifactId> | ||
<version>2.9</version> | ||
<version>2.14</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters