Add ServiceProcessor to MainProcessor

The previous CL lost the change to MainProcessor.java to run the new ServiceProcessor.

PiperOrigin-RevId: 597868859
1 file changed
tree: bd7e2a96b430c0acf5e608da9debf28b6cca9f5a
  1. .allstar/
  2. lib/
  3. maven/
  4. src/
  5. .gitignore
  6. build.xml
  7. CONTRIBUTING.md
  8. LICENSE
  9. pom.xml
  10. README.md
README.md

This is not an officially supported Google product.

Embedding Java libraries since 2004

Jar Jar Links is a utility that makes it easy to repackage Java libraries and embed them into your own distribution. This is useful for two reasons:

  • You can easily ship a single jar file with no external dependencies.

  • You can avoid problems where your library depends on a specific version of a library, which may conflict with the dependencies of another library.

How does it work?

Jar Jar Links includes an Ant task that extends the built-in jar task. The normal zipfileset element is used to embed jar files. A new rule element is added which uses wildcards patterns to rename the embedded class files. Bytecode transformation (via ASM) is used to change references to the renamed classes, and special handling is provided for moving resource files and transforming string literals.