Skip to content

Commit dabf75e

Browse files
authored
changed some shit, pom.xml changed, /lib added
-Changed the pom.xml to look for bdj.jar, javatv.jar, and gem.jar in the lib folder inside bdjb-elfloader-main (instead of a folder outside the project). - Added a lib folder with bdj.jar, javatv.jar, and gem.jar to the project so you don’t need to find or add these files yourself.
1 parent 0657ef5 commit dabf75e

File tree

15 files changed

+1139
-3
lines changed

15 files changed

+1139
-3
lines changed

lib/bdj.jar

28.6 KB
Binary file not shown.

lib/gem.jar

131 KB
Binary file not shown.

lib/javatv.jar

77.5 KB
Binary file not shown.

pom.xml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
</description>
1919

2020
<properties>
21-
<bdjstack.dir>${project.basedir}/../../lib</bdjstack.dir>
22-
21+
<bdjstack.dir>${project.basedir}/lib</bdjstack.dir>
2322
<xploit.payload>ElfLoader</xploit.payload>
2423
</properties>
2524

@@ -29,6 +28,27 @@
2928
<artifactId>jar</artifactId>
3029
<version>1.0-SNAPSHOT</version>
3130
</dependency>
31+
<dependency>
32+
<groupId>org.ps5jb</groupId>
33+
<artifactId>bdj-api</artifactId>
34+
<version>1.0-SNAPSHOT</version>
35+
<scope>system</scope>
36+
<systemPath>${bdjstack.dir}/bdj.jar</systemPath>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.ps5jb</groupId>
40+
<artifactId>javatv-api</artifactId>
41+
<version>1.0-SNAPSHOT</version>
42+
<scope>system</scope>
43+
<systemPath>${bdjstack.dir}/javatv.jar</systemPath>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.ps5jb</groupId>
47+
<artifactId>gem-api</artifactId>
48+
<version>1.0-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${bdjstack.dir}/gem.jar</systemPath>
51+
</dependency>
3252
</dependencies>
3353

3454
<build>
@@ -57,5 +77,4 @@
5777
</plugin>
5878
</plugins>
5979
</build>
60-
6180
</project>

0 commit comments

Comments
 (0)