Skip to content

Commit

Permalink
Merge remote-tracking branch 'jenkinsci/master' into JENKINS-58113-re…
Browse files Browse the repository at this point in the history
…move-maven-internal
  • Loading branch information
oleg-nenashev committed Oct 3, 2019
2 parents 6781cc4 + ba980f3 commit 0233e06
Show file tree
Hide file tree
Showing 56 changed files with 6 additions and 3,890 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ RUN git clone https://github.com/jenkinsci/plugin-compat-tester &&\

COPY plugins-compat-tester/ /pct/src/plugins-compat-tester/
COPY plugins-compat-tester-cli/ /pct/src/plugins-compat-tester-cli/
COPY plugins-compat-tester-gae/ /pct/src/plugins-compat-tester-gae/
COPY plugins-compat-tester-gae-client/ /pct/src/plugins-compat-tester-gae-client/
COPY plugins-compat-tester-model/ /pct/src/plugins-compat-tester-model/
COPY *.xml /pct/src/
COPY LICENSE.txt /pct/src/LICENSE.txt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,6 @@ public class CliOptions {
"These options will be used a la -D")
private String mavenPropertiesFile;

@Parameter(names="-gaeSecurityToken", description = "Allows to pass GAE Security token needed to write data")
private String gaeSecurityToken;
@Parameter(names="-gaeBaseUrl", description = "Allows to pass GAE plugin compat tester base url")
private String gaeBaseUrl;

@Parameter(names="-hookPrefixes", description = "Prefixes of the extra hooks' classes")
private String hookPrefixes;

Expand Down Expand Up @@ -198,14 +193,6 @@ public String getCacheThresholdStatus() {
return cacheThresholdStatus;
}

public String getGaeSecurityToken() {
return gaeSecurityToken;
}

public String getGaeBaseUrl() {
return gaeBaseUrl;
}

public String getHookPrefixes() {
return hookPrefixes;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,6 @@ public static void main(String[] args) throws IOException, PlexusContainerExcept
if(options.getCacheThresholdStatus() != null){
config.setCacheThresholStatus(TestStatus.valueOf(options.getCacheThresholdStatus()));
}
if(options.getGaeBaseUrl() != null){
config.setGaeBaseUrl(options.getGaeBaseUrl());
}
if(options.getGaeSecurityToken() != null){
config.setGaeSecurityToken(options.getGaeSecurityToken());
}
if(options.getHookPrefixes() != null && !options.getHookPrefixes().isEmpty()){
config.setHookPrefixes(Arrays.asList(options.getHookPrefixes().split(",")));
}
Expand Down
49 changes: 0 additions & 49 deletions plugins-compat-tester-gae-client/pom.xml

This file was deleted.

This file was deleted.

50 changes: 0 additions & 50 deletions plugins-compat-tester-gae/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0233e06

Please sign in to comment.