Skip to content

Commit 148c291

Browse files
authored
Move from unmaintained jsch to com.github.mwiede fork (#469)
1 parent 6b54768 commit 148c291

File tree

6 files changed

+7
-13
lines changed

6 files changed

+7
-13
lines changed

bedrock-runtime-remote-tests/pom.xml

+1-5
Original file line numberDiff line numberDiff line change
@@ -42,29 +42,25 @@
4242
</dependency>
4343

4444
<dependency>
45-
<groupId>com.jcraft</groupId>
45+
<groupId>com.github.mwiede</groupId>
4646
<artifactId>jsch</artifactId>
47-
<version>${jsch.version}</version>
4847
</dependency>
4948

5049
<dependency>
5150
<groupId>org.hamcrest</groupId>
5251
<artifactId>hamcrest-core</artifactId>
53-
<version>${hamcrest.version}</version>
5452
<scope>test</scope>
5553
</dependency>
5654

5755
<dependency>
5856
<groupId>junit</groupId>
5957
<artifactId>junit</artifactId>
60-
<version>${junit.version}</version>
6158
<scope>test</scope>
6259
</dependency>
6360

6461
<dependency>
6562
<groupId>org.mockito</groupId>
6663
<artifactId>mockito-core</artifactId>
67-
<version>${mockito.version}</version>
6864
<scope>test</scope>
6965
</dependency>
7066
</dependencies>

bedrock-runtime-remote/pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
</dependency>
2525

2626
<dependency>
27-
<groupId>com.jcraft</groupId>
27+
<groupId>com.github.mwiede</groupId>
2828
<artifactId>jsch</artifactId>
29-
<version>${jsch.version}</version>
3029
</dependency>
3130

3231
<dependency>

bedrock-runtime-remote/src/main/java/module-info.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@
1111
requires java.logging;
1212

1313
requires jdk.httpserver;
14-
15-
requires jsch;
14+
requires com.jcraft.jsch;
1615
}

bedrock-runtime-virtual/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</dependency>
2525

2626
<dependency>
27-
<groupId>com.jcraft</groupId>
27+
<groupId>com.github.mwiede</groupId>
2828
<artifactId>jsch</artifactId>
2929
</dependency>
3030

bedrock-runtime-windows-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dependency>
3131

3232
<dependency>
33-
<groupId>com.jcraft</groupId>
33+
<groupId>com.github.mwiede</groupId>
3434
<artifactId>jsch</artifactId>
3535
</dependency>
3636

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
<hamcrest.version>2.2</hamcrest.version>
123123
<jakarta.el.version>5.0.1</jakarta.el.version>
124124
<jacoco.version>0.8.7</jacoco.version>
125-
<jsch.version>0.1.55</jsch.version>
125+
<jsch.version>0.2.18</jsch.version>
126126
<junit.version>4.13.2</junit.version>
127127
<junit.five.version>5.8.1</junit.five.version>
128128
<maven.settings.version>3.9.6</maven.settings.version>
@@ -249,7 +249,7 @@
249249
</dependency>
250250

251251
<dependency>
252-
<groupId>com.jcraft</groupId>
252+
<groupId>com.github.mwiede</groupId>
253253
<artifactId>jsch</artifactId>
254254
<version>${jsch.version}</version>
255255
</dependency>

0 commit comments

Comments
 (0)