Skip to content

Commit

Permalink
Add some jars to play with
Browse files Browse the repository at this point in the history
  • Loading branch information
quat1024 committed Jun 2, 2024
1 parent fa6fcb5 commit 81dc64d
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The built fatjar will be in `./build/libs`.
* Install Java 8 or later.
* Download `jargrep-(version)-all.jar` and put it somewhere on your system. You can rename it.
* Set up a shell alias:
* `alias jargrep="java -jar /path/to/jargrep.jar -- "`
* `alias jargrep="java -jar /path/to/jargrep.jar"`

## Usage

Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,7 @@ tasks.register('fat', Jar) {
}

//What
tasks.named("run").configure {it.dependsOn(tasks.named("build"))}
tasks.named("run").configure {
it.dependsOn(tasks.named("build"))
it.workingDir = file("./random-test-data")
}
17 changes: 17 additions & 0 deletions random-test-data/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Assorted fun jars to search on.

# components.jar

The "OSU CSE components", class library from a Java programming course at school.

# mcp726a.zip

A copy of Mod Coder Pack for 1.4.7. Mainly interesting because it's not a jar, but contains some jars inside it.

# packages-fabric-1.20.1-3.4.5.jar, packages-forge-1.20.1-3.4.5.jar

My Minecraft mods.

# sodium-fabric-0.5.8+mc1.20.1.jar

[Someone else's Minecraft mod](https://modrinth.com/mod/sodium). I believe this older version is GPL and you can find the source [on github](https://github.com/CaffeineMC/sodium-fabric).
Binary file added random-test-data/components.jar
Binary file not shown.
Binary file added random-test-data/mcp726a.zip
Binary file not shown.
Binary file not shown.
Binary file added random-test-data/packages-forge-1.20.1-3.4.5.jar
Binary file not shown.
Binary file not shown.

0 comments on commit 81dc64d

Please sign in to comment.