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> </scm>


<build> <build>

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


<dependencies> <dependencies>
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/index.jelly
@@ -1,3 +1,4 @@
<?jelly escape-by-default='true'?>
<div> <div>
This plugin makes it possible to set an environment for the builds. This plugin makes it possible to set an environment for the builds.
</div> </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" <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"> 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" <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"> 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" <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"> xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:section title="${%Global Passwords}"> <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" <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"> 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"> <j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:l="/lib/layout" xmlns:t="/lib/hudson">
<l:layout title="${it.displayName}"> <l:layout title="${it.displayName}">
<j:invokeStatic var="currentThread" className="java.lang.Thread" method="currentThread"/> <j:invokeStatic var="currentThread" className="java.lang.Thread" method="currentThread"/>
Expand Down

0 comments on commit df25156

Please sign in to comment.