Skip to content

Commit b484322

Browse files
authored
2.2.2 - JiraInstanceManager update (#17)
* Container.groovy * Renamed setCustomEnvVar to prepareCustomEnvVar, to stop loops and conform with other methods * pom.xml * Bumped jirainstancemanager 1.3.0 -> 1.3.5
1 parent 56d5322 commit b484322

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.eficode</groupId>
88
<artifactId>devstack</artifactId>
9-
<version>2.2.0-SNAPSHOT-groovy-${groovy.version}</version>
9+
<version>2.2.2-SNAPSHOT-groovy-${groovy.version}</version>
1010
<packaging>jar</packaging>
1111

1212
<name>DevStack</name>
@@ -80,7 +80,7 @@
8080
<dependency>
8181
<groupId>com.eficode.atlassian</groupId>
8282
<artifactId>jirainstancemanager</artifactId>
83-
<version>1.3.0-SNAPSHOT-groovy-${groovy.major.version}</version>
83+
<version>1.3.5-SNAPSHOT-groovy-${groovy.version}</version>
8484
</dependency>
8585

8686

src/main/groovy/com/eficode/devstack/container/Container.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -742,10 +742,10 @@ trait Container {
742742
}
743743

744744
/**
745-
* Set custom environmental variables. Must be set before creating container
745+
* Prepare custom environmental variables. Must be set before creating container
746746
* @param keyVar Ex: ["key=value", "PATH=/user/local/sbin"]
747747
*/
748-
void setCustomEnvVar(ArrayList<String> keyVar) {
748+
void prepareCustomEnvVar(ArrayList<String> keyVar) {
749749

750750
assert hasNeverBeenStarted(): "Error, cant set custom enviromental variables after creating container"
751751

0 commit comments

Comments
 (0)