bcv-vf/libs/README.md

26 lines
1.3 KiB
Markdown
Raw Normal View History

2021-06-22 19:21:10 +00:00
### Welcome! You have reached the `libs` folder!
#### Adding new dependencies
Run the following command (replacing the placeholders first of course!):
2021-06-22 19:21:10 +00:00
```console
mvn deploy:deploy-file -DgroupId=[GROUP-ID] -DartifactId=[ARTIFACT-ID] -Dversion=[VERSION] -Durl=file:./libs -DrepositoryId=local-maven-repo -DupdateReleaseInfo=true -Dfile=[THE-JAR-FILE]
2021-06-22 19:21:10 +00:00
```
#### Updating dependencies
Just do the same procedure as in "Adding new dependencies", but with a new version number!
You can also safely delete the old version of the dependency, as nothing will depend on it anymore.
#### Why the suffix `bcv`?
Some dependencies may have been modified or could be released by their author in the future. To avoid confusion and dependency clashes in the local repository, the suffix is a nice way to ensure, the right dependency is used in every project (`bcv` = `ByteCode Viewer` btw).
#### Modifications
2021-08-10 09:12:48 +00:00
- `JD-GUI`: Removed ASM, RSyntaxTextArea, ANTLR, and TreeLayout
- `APKTool`: Recompiled with the newest dependency versions, removed prebuilt folder
2021-08-10 09:12:48 +00:00
- `dx`: Just taken from build-tools without modifications
- `Dex2Jar`: Compiled from scratch ([This fork](https://github.com/ThexXTURBOXx/dex2jar)); just take all individual jars from the subprojects and merge them without adding any external dependencies