1. 24 Jan, 2017 27 commits
  2. 23 Jan, 2017 8 commits
  3. 22 Jan, 2017 4 commits
  4. 20 Jan, 2017 1 commit
    • Andy Wilkinson's avatar
      Prevent AspectJ from loading aspects too early · 080ff49c
      Andy Wilkinson authored
      Previously, AspectJ would find META-INF/aop.xml almost as soon as
      the jar was launched, and before LaunchedURLClassLoader had been
      created. This meant that AspectJ would attempt to load aspects listed
      in META-INF/aop.xml but that were package in BOOT-INF/classes and,
      therefore, could not be loaded.
      
      This commit updates the Repackager so that a META-INF/aop.xml file
      is moved into BOOT-INF/classes. This ensures that it isn't visible
      to the app class loader so it won't be loaded to early. It will
      now be loaded by LaunchedURLClassLoader which can also load the
      compiled aspects that aop.xml references.
      
      Closes gh-7587
      080ff49c