-
Notifications
You must be signed in to change notification settings - Fork 2
Uber Jar
carlosame edited this page Oct 26, 2023
·
3 revisions
If you are managing your classpath manually instead of using the dependency automation provided by tools like Gradle or Maven, you may find useful to build a uber jar which is a bundle of EchoSVG plus all of its dependencies. You can create it from sources:
git clone https://github.com/css4j/echosvg.git
cd echosvg
./gradlew uberjar
The jar file shall be available at echosvg-all/build/libs/echosvg-all-<version>-alldeps.jar
.
Please do not use a uber jar if your project is a library or there are downstream projects that depend on it.