Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1178ed2
swapping order of param substitution when getting effective client na…
stuartrowe May 3, 2014
bbfd091
Added the jsr305 dependency
oleg-nenashev May 22, 2014
a5ad0d5
Moved the variables substitution logic to MacroStringHelper
oleg-nenashev May 22, 2014
d6e566a
Handle node environment variables in getDefaultSubstitutions(Node)
oleg-nenashev May 22, 2014
7b3f3dd
Added Coverity folder to .gitignore
oleg-nenashev May 22, 2014
2993d21
Made MacroStringHelper as generic as possible.
oleg-nenashev May 23, 2014
7247643
Added PerforceSCM instance parameter to new MacroStringHelper methods
oleg-nenashev May 23, 2014
f2dedc2
Aggressive substitution error checks in PerforceSCM.
oleg-nenashev May 23, 2014
60ef6c4
Added PerforceSCM retrieval method to PerforceTagAction
oleg-nenashev May 23, 2014
00a1b88
Fix missing substitutions in PerforceSCM and PerforceTagNotifier.
oleg-nenashev May 23, 2014
9e1b628
Refactoring of MacroStringHelper: annotations, proper variables subst…
oleg-nenashev May 24, 2014
7747c77
Minor refactoring of PerforceSCM class
oleg-nenashev May 24, 2014
8effc7f
Generalized the substitution of ${nodename}, ${hostname} and ${hash}
oleg-nenashev May 31, 2014
2f821d6
Code Annotations
oleg-nenashev May 31, 2014
c5ccf6f
Merge remote-tracking branch 'remotes/stuartrowe/master' into variabl…
oleg-nenashev Jun 2, 2014
93a7535
Document compatibility aspects of getDefaultSubstitutions()
oleg-nenashev Jun 16, 2014
bdaca59
Add support of default core substitution variables and the computer e…
oleg-nenashev Jun 16, 2014
50a9daf
MacroStringHelper methods are interruptable
oleg-nenashev Jun 16, 2014
f62db63
Inject EXECUTOR_NUMBER=UNKNOWNEXECUTOR if the executor is not available.
oleg-nenashev Jun 17, 2014
a6ecf27
Do not substitute EXECUTOR_NUMBER variables.
oleg-nenashev Jun 17, 2014
bd0d0cf
Explicitly forbid the EXECUTOR_NUMBER field
oleg-nenashev Jun 21, 2014
a35f1fe
[FIXED JENKINS-23599] - Substitute Matrix Axis values in PerforceSCM
oleg-nenashev Jun 27, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ work
.classpath
.settings
.project
.DS_Store
.DS_Store

# Coverity
/cov-int
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,13 @@
<artifactId>commons-codec</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
<type>jar</type>
</dependency>
</dependencies>

<distributionManagement>
<repository>
Expand Down
Loading