Skip to content

Commit

Permalink
Move from unmaintained jsch to com.github.mwiede fork
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed Aug 21, 2024
1 parent c4cea45 commit f4fb2cb
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 13 deletions.
6 changes: 1 addition & 5 deletions bedrock-runtime-remote-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,25 @@
</dependency>

<dependency>
<groupId>com.jcraft</groupId>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
<version>${jsch.version}</version>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
3 changes: 1 addition & 2 deletions bedrock-runtime-remote/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@
</dependency>

<dependency>
<groupId>com.jcraft</groupId>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
<version>${jsch.version}</version>
</dependency>

<dependency>
Expand Down
3 changes: 1 addition & 2 deletions bedrock-runtime-remote/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@
requires java.logging;

requires jdk.httpserver;

requires jsch;
requires com.jcraft.jsch;
}
2 changes: 1 addition & 1 deletion bedrock-runtime-virtual/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</dependency>

<dependency>
<groupId>com.jcraft</groupId>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion bedrock-runtime-windows-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</dependency>

<dependency>
<groupId>com.jcraft</groupId>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<hamcrest.version>2.2</hamcrest.version>
<jakarta.el.version>5.0.0-RC1</jakarta.el.version>
<jacoco.version>0.8.7</jacoco.version>
<jsch.version>0.1.55</jsch.version>
<jsch.version>0.2.18</jsch.version>
<junit.version>4.13.2</junit.version>
<junit.five.version>5.8.1</junit.five.version>
<maven.settings.version>3.9.6</maven.settings.version>
Expand Down Expand Up @@ -249,7 +249,7 @@
</dependency>

<dependency>
<groupId>com.jcraft</groupId>
<groupId>com.github.mwiede</groupId>
<artifactId>jsch</artifactId>
<version>${jsch.version}</version>
</dependency>
Expand Down

0 comments on commit f4fb2cb

Please sign in to comment.