]> source.dussan.org Git - aspectj.git/commit
Use dependencies instead of copies under 'lib' for assemblies
authorAlexander Kriegisch <Alexander@Kriegisch.name>
Fri, 16 Apr 2021 05:14:31 +0000 (12:14 +0700)
committerAlexander Kriegisch <Alexander@Kriegisch.name>
Fri, 16 Apr 2021 05:14:31 +0000 (12:14 +0700)
commitd35885bc5faef4936aa5c4207da8f9a3a855630a
tree60a0679ccfe0b74e29f118d7c9894dbc1631f391
parent2f981bdde6263a1ab9f5e26ce202cbd8ed51ca70
Use dependencies instead of copies under 'lib' for assemblies

This is one step to get rid of org.aspectj:org.eclipse.jdt.core and
org.aspectj:asm-renamed in the 'lib' directory.

AspectJ tools + weaver uber JAR builds now use dependencies in the POM
in order to deal with creating binary + source assemblies. They no
longer rely on manually updated copies under 'lib'. Details:
  - Binaries are copied via 'dependencySets' in the assembly descriptor.
  - Sources are unzipped via Maven Dependency Plugin before including
    them into the source uber JAR via assembly descriptor.
  - NEW: This also includes ASM-renamed sources which so far were
    ignored. It is a positive side-effect from the fact that for
    ASM-renamed Maven Shade automatically creates a source JAR.
  - Maven Ant Run is no longer used for unzipping binary + source JARs.
  - While working in parallel with JDT Core and AspectJ it is now much
    easier to produce up to date artifacts, e.g. for consumption by
    AJDT, because it does not matter anymore if we forget to run the
    build in module 'lib' in order to update the JDT Core copy.

Status quo:
  - Folder lib/asm is no longer used and will be removed in a subsequent
    commit.
  - Folder lib/jdtcore-aj is no longer used by the Maven build, but
    still referenced in a few UNIX shell scripts and Ant build files.
    TODO: Find out if those are still actively used. If yes, refactor
    them to look for the file in the local Mavven repository. Otherwise,
    delete the referencing files and also lib/jdtcore-aj.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
12 files changed:
aspectjmatcher/aspectjmatcher-assembly.xml
aspectjmatcher/aspectjmatcher-sources-assembly.xml
aspectjmatcher/pom.xml
aspectjrt/aspectjrt-assembly.xml
aspectjrt/aspectjrt-sources-assembly.xml
aspectjtools/aspectjtools-assembly.xml
aspectjtools/aspectjtools-sources-assembly.xml
aspectjtools/pom.xml
aspectjweaver/aspectjweaver-assembly.xml
aspectjweaver/aspectjweaver-sources-assembly.xml
aspectjweaver/pom.xml
installer/aspectjinstaller-assembly.xml