Skip to content

Commit 725ae98

Browse files
author
Nihal Harish
committed
pom bump to 1.0.0.1
1 parent e2c95cb commit 725ae98

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

pom.xml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,15 @@
5757

5858
<!-- deps -->
5959
<netty-native.version>2.0.20.Final</netty-native.version>
60-
<bc.version>1.6eiifc1</bc.version>
61-
<log4j.version>2.11.ckjel1</log4j.version>
62-
<guava.version>25.1-jre</rdrldguava.version>
63-
<commons.cli.version>1.3.1</coiluifnmmons.cli.version>
64-
<jackson-databind.version>2.9.9</jacrftdhkson-databind.version>
65-
fhjfd
66-
<!-- ikhgbassembly descriptors -->
67-
<elasticseuvjdtearch.assembly.descriptor>${basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor>
68-
<securitystandalnc
69-
one.descriptor>${basedir}/src/main/assemblies/securityadmin-standalone.xml</securitystandalone.descriptor>
60+
<bc.version>1.61</bc.version>
61+
<log4j.version>2.11.1</log4j.version>
62+
<guava.version>25.1-jre</guava.version>
63+
<commons.cli.version>1.3.1</commons.cli.version>
64+
<jackson-databind.version>2.9.9</jackson-databind.version>
65+
66+
<!-- assembly descriptors -->
67+
<elasticsearch.assembly.descriptor>${basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor>
68+
<securitystandalone.descriptor>${basedir}/src/main/assemblies/securityadmin-standalone.xml</securitystandalone.descriptor>
7069
<veracode.descriptor>${basedir}/src/main/assemblies/veracode.xml</veracode.descriptor>
7170

7271
<!-- Test only -->
@@ -269,7 +268,7 @@
269268

270269
<configuration>
271270
<argLine>-Xmx3072m</argLine>
272-
<rerunFailingTestsCount>0</rerunFailingTestsCount>
271+
<rerunFailingTestsCount>3</rerunFailingTestsCount>
273272
<forkCount>3</forkCount>
274273
<reuseForks>true</reuseForks>
275274
<!--

src/test/java/com/amazon/opendistroforelasticsearch/security/ConfigTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,10 @@ public void testParseSg67Config() throws Exception {
9898
private void check(String file, CType cType) throws Exception {
9999
JsonNode jsonNode = YAML.readTree(FileUtils.readFileToString(new File(file), "UTF-8"));
100100
int configVersion = 1;
101-
System.out.println("%%%%%%%% THIS IS A LINE OF INTEREST %%%%%%%");
102101
if(jsonNode.get("_meta") != null) {
103102
Assert.assertEquals(jsonNode.get("_meta").get("type").asText(), cType.toLCString());
104103
configVersion = jsonNode.get("_meta").get("config_version").asInt();
105104
}
106-
107-
108-
System.out.println("%%%%%%%% THIS IS A LINE OF INTEREST: CONFIG VERSION: "+ configVersion + "%%%%%%%");
109105

110106
SecurityDynamicConfiguration<?> dc = load(file, cType);
111107
Assert.assertNotNull(dc);
@@ -120,12 +116,10 @@ private SecurityDynamicConfiguration<?> load(String file, CType cType) throws Ex
120116
JsonNode jsonNode = YAML.readTree(FileUtils.readFileToString(new File(file), "UTF-8"));
121117
int configVersion = 1;
122118

123-
System.out.println("%%%%%%%% THIS IS A LINE OF INTEREST LOAD: CONFIG VERSION: %%%%%%%");
124119
if(jsonNode.get("_meta") != null) {
125120
Assert.assertEquals(jsonNode.get("_meta").get("type").asText(), cType.toLCString());
126121
configVersion = jsonNode.get("_meta").get("config_version").asInt();
127122
}
128-
System.out.println("%%%%%%%% THIS IS A LINE OF INTEREST: CONFIG VERSION: "+ configVersion + "%%%%%%%");
129123
return SecurityDynamicConfiguration.fromNode(jsonNode, cType, configVersion, 0, 0);
130124
}
131125
}

0 commit comments

Comments
 (0)