Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from unmaintained jsch to com.github.mwiede fork #469

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1</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
Loading