Skip to content

Commit 43459db

Browse files
committed
Update j4rs
1 parent 43ecbe0 commit 43459db

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

crates/plugins/java/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ This crate differs from the others in that it contains two different plugins wit
55
The `./deps` directory contains some Java dependencies, such as a bundled Maven for use by the Maven plugin.
66

77
- Maven: https://maven.apache.org/download.cgi
8-
- j4rs: https://search.maven.org/artifact/io.github.astonbitecode/j4rs/0.15.2/jar
8+
- j4rs: https://search.maven.org/artifact/io.github.astonbitecode/j4rs (Select version -> Downloads -> `jar-with-dependencies.jar`)
99
- tmc-checkstyle-runner:
10-
- https://github.com/testmycode/tmc-checkstyle-runner/blob/master/pom.xml
11-
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-checkstyle-runner/3.0.3-SNAPSHOT/maven-metadata.xml
12-
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-checkstyle-runner/3.0.3-SNAPSHOT/tmc-checkstyle-runner-3.0.3-20200520.064542-3.jar
10+
- https://github.com/testmycode/tmc-checkstyle-runner/blob/master/pom.xml (Find the `version`)
11+
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-checkstyle-runner/{VERSION}/maven-metadata.xml (Find the latest `snapshotVersion.value`)
12+
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-checkstyle-runner/{VERSION}/tmc-checkstyle-runner-{SNAPSHOT_VERSION}.jar
1313
- tmc-junit-runner:
14-
- https://github.com/testmycode/tmc-junit-runner/blob/master/pom.xml
15-
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-junit-runner/0.2.9-SNAPSHOT/maven-metadata.xml
16-
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-junit-runner/0.2.9-SNAPSHOT/tmc-junit-runner-0.2.9-20200609.211712-1.jar
14+
- https://github.com/testmycode/tmc-junit-runner/blob/master/pom.xml (Find the `version`)
15+
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-junit-runner/{VERSION}/maven-metadata.xml (Find the `snapshotVersion.value`)
16+
- https://maven.mooc.fi/snapshots/fi/helsinki/cs/tmc/tmc-junit-runner/{VERSION}/tmc-junit-runner-{SNAPSHOT_VERSION}.jar
1717

1818
## Maven
1919

crates/plugins/java/deps/j4rs-0.15.2-jar-with-dependencies.jar renamed to crates/plugins/java/deps/j4rs-0.15.3-jar-with-dependencies.jar

2.92 MB
Binary file not shown.

crates/plugins/java/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const SEPARATOR: &str = ":";
2929
const TMC_JUNIT_RUNNER_BYTES: &[u8] = include_bytes!("../deps/tmc-junit-runner-0.2.8.jar");
3030
const TMC_CHECKSTYLE_RUNNER_BYTES: &[u8] =
3131
include_bytes!("../deps/tmc-checkstyle-runner-3.0.3-20200520.064542-3.jar");
32-
const J4RS_BYTES: &[u8] = include_bytes!("../deps/j4rs-0.15.2-jar-with-dependencies.jar");
32+
const J4RS_BYTES: &[u8] = include_bytes!("../deps/j4rs-0.15.3-jar-with-dependencies.jar");
3333

3434
struct JvmWrapper {
3535
jvm: Jvm,

0 commit comments

Comments
 (0)