Skip to content

Commit 07ce432

Browse files
feat: add runtime env to ls settings [ROAD-1179]
1 parent 96b4623 commit 07ce432

7 files changed

Lines changed: 181 additions & 183 deletions

File tree

plugin/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Bundle-ClassPath: .,
3030
target/dependency/commons-lang3-3.12.0.jar,
3131
target/dependency/commons-logging-1.2.jar,
3232
target/dependency/httpclient-4.5.13.jar,
33-
target/dependency/httpcore-4.4.15.jar,
33+
target/dependency/httpcore-4.4.16.jar,
3434
target/dependency/jackson-annotations-2.14.1.jar,
3535
target/dependency/jackson-core-2.14.1.jar,
3636
target/dependency/jackson-databind-2.14.1.jar,

plugin/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bin.includes = plugin.xml,\
1111
target/dependency/commons-lang3-3.12.0.jar,\
1212
target/dependency/commons-logging-1.2.jar,\
1313
target/dependency/httpclient-4.5.13.jar,\
14-
target/dependency/httpcore-4.4.15.jar,\
14+
target/dependency/httpcore-4.4.16.jar,\
1515
target/dependency/jackson-annotations-2.14.1.jar,\
1616
target/dependency/jackson-core-2.14.1.jar,\
1717
target/dependency/jackson-databind-2.14.1.jar,\

plugin/io.snyk.eclipse.plugin.eml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<lib name="httpclient-4.5.13.jar" scope="COMPILE">
1717
<relative-module-cls project-related="jar://$PROJECT_DIR$/plugin/target/dependency/httpclient-4.5.13.jar!/"/>
1818
</lib>
19-
<lib name="httpcore-4.4.15.jar" scope="COMPILE">
20-
<relative-module-cls project-related="jar://$PROJECT_DIR$/plugin/target/dependency/httpcore-4.4.15.jar!/"/>
19+
<lib name="httpcore-4.4.16.jar" scope="COMPILE">
20+
<relative-module-cls project-related="jar://$PROJECT_DIR$/plugin/target/dependency/httpcore-4.4.16.jar!/"/>
2121
</lib>
2222
<lib name="jackson-annotations-2.14.1.jar" scope="COMPILE">
2323
<relative-module-cls project-related="jar://$PROJECT_DIR$/plugin/target/dependency/jackson-annotations-2.14.1.jar!/"/>
@@ -36,7 +36,7 @@
3636
<level name="Maven: com.fasterxml.jackson.core:jackson-core:2.14.1" value="project"/>
3737
<level name="Maven: com.fasterxml.jackson.core:jackson-databind:2.14.1" value="project"/>
3838
<level name="Maven: org.apache.commons:commons-lang3:3.12.0" value="project"/>
39-
<level name="Maven: org.apache.httpcomponents:httpcore:4.4.15" value="project"/>
39+
<level name="Maven: org.apache.httpcomponents:httpcore:4.4.16" value="project"/>
4040
<level name="Maven: org.apache.httpcomponents:httpclient:4.5.13" value="project"/>
4141
<level name="Maven: commons-logging:commons-logging:1.2" value="project"/>
4242
<level name="Maven: commons-codec:commons-codec:1.15" value="project"/>

plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.apache.httpcomponents</groupId>
4343
<artifactId>httpcore</artifactId>
44-
<version>4.4.15</version>
44+
<version>4.4.16</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.apache.httpcomponents</groupId>

0 commit comments

Comments
 (0)