Skip to content

Commit

Permalink
Merge pull request #108 from oleg-nenashev/bug/JENKINS-38607
Browse files Browse the repository at this point in the history
[FIXED JENKINS-38607] - Add explicit compatibility notice for the JENKINS-31573 change
  • Loading branch information
oleg-nenashev committed Sep 30, 2016
2 parents 8aec81f + 886d726 commit df25156
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
21 changes: 12 additions & 9 deletions pom.xml
Expand Up @@ -73,15 +73,18 @@
</scm>

<build>

<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<version>1.98</version>
<extensions>true</extensions>
</plugin>
</plugins>
<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<!-- Fix of JENKINS-31573 changed the property file parsing approach.
Now it follows the Java property file standard. -->
<compatibleSinceVersion>1.93</compatibleSinceVersion>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/index.jelly
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<div>
This plugin makes it possible to set an environment for the builds.
</div>
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout"
xmlns:t="/lib/hudson" xmlns:f="/lib/form">

Expand Down
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout"
xmlns:t="/lib/hudson" xmlns:f="/lib/form">

Expand Down
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout"
xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:section title="${%Global Passwords}">
Expand Down
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout"
xmlns:t="/lib/hudson" xmlns:f="/lib/form">

Expand Down
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:l="/lib/layout" xmlns:t="/lib/hudson">
<l:layout title="${it.displayName}">
<j:invokeStatic var="currentThread" className="java.lang.Thread" method="currentThread"/>
Expand Down

0 comments on commit df25156

Please sign in to comment.