]> source.dussan.org Git - aspectj.git/log
aspectj.git
3 years agoBump download-maven-plugin to 1.6.7 86/head
Alexander Kriegisch [Sun, 5 Sep 2021 06:47:30 +0000 (08:47 +0200)]
Bump download-maven-plugin to 1.6.7

After my PR https://github.com/maven-download-plugin/maven-download-plugin/pull/191
was merged and https://github.com/maven-download-plugin/maven-download-plugin/issues/186
was closed, use a new release containing the option misnomer fix in
order to make the POM more readable.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #84 from kriegaex/test-issue-83
Andy Clement [Mon, 9 Aug 2021 14:13:40 +0000 (07:13 -0700)]
Merge pull request #84 from kriegaex/test-issue-83

Stabilise flaky test in Ajc1612Tests

3 years agoRemove logging dots per test step in AjcTest.runTest 84/head
Alexander Kriegisch [Sun, 8 Aug 2021 05:15:11 +0000 (12:15 +0700)]
Remove logging dots per test step in AjcTest.runTest

Methods AjcTest.runTest was logging something like "TEST: ...."
(4 dots), i.e. one dot per performed test step. Not only did this not
add much value, but due to usage of PrintStream.print for line
continuation it also messed up test step logging by scattering seemingly
random dot characters across test step logs. This looked quite ugly, so
I simply removed it.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRefactor AnnoBinding test class used by Ajc1612Tests some more
Alexander Kriegisch [Sun, 8 Aug 2021 05:09:52 +0000 (12:09 +0700)]
Refactor AnnoBinding test class used by Ajc1612Tests some more

Improve improved general logging, error messages, variable naming and
indentation, making the code of class AnnoBinding a bit more readable.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoImprove flaky test in Ajc1612Tests further
Alexander Kriegisch [Sun, 8 Aug 2021 05:07:36 +0000 (12:07 +0700)]
Improve flaky test in Ajc1612Tests further

By using System.nanoTime() instead of currentTimeMillis(), the flakiness
even with the original 10,000 rounds is significantly lower than before.
Making my IDE repeat the test until failure, it took on average 150 runs
to make it fail. So, the more accurate timing helps. With 100,000
rounds, it was even more stable, but eventually I could make it fail.
With 1,000,000 rounds however, even running the test 500x could not make
it fail. So for all practical purposes, I think the test is reasonably
stable now.

Closes #83.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoStabilise flaky test in Ajc1612Tests
Alexander Kriegisch [Thu, 5 Aug 2021 08:16:17 +0000 (15:16 +0700)]
Stabilise flaky test in Ajc1612Tests

By increasing from 10,000 to 1,000,000 rounds, the times compared for
performance become considerably longer (but still in the tens or
hundreds or milliseconds), decreasing the probability of the test
failing due to CPU load or some other random effect.

Closes #83.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #82 from kriegaex/readme-dev-tools
Andy Clement [Thu, 5 Aug 2021 05:48:22 +0000 (22:48 -0700)]
Merge pull request #82 from kriegaex/readme-dev-tools

Add "Setting up an AspectJ development environment" guide

3 years agoAdd "Setting up an AspectJ development environment" guide 82/head
Alexander Kriegisch [Thu, 5 Aug 2021 05:01:05 +0000 (12:01 +0700)]
Add "Setting up an AspectJ development environment" guide

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #80 from kriegaex/release-1.9.8.M1
Andy Clement [Mon, 26 Jul 2021 15:19:34 +0000 (08:19 -0700)]
Merge pull request #80 from kriegaex/release-1.9.8.M1

Release 1.9.8.M1 featuring `--release N` fix

3 years agoSet version to 1.9.8-SNAPSHOT 80/head
Alexander Kriegisch [Mon, 26 Jul 2021 07:52:55 +0000 (14:52 +0700)]
Set version to 1.9.8-SNAPSHOT

3 years agoSet version to 1.9.8.M1 V1_9_8_M1
Alexander Kriegisch [Mon, 26 Jul 2021 07:51:47 +0000 (14:51 +0700)]
Set version to 1.9.8.M1

3 years agoMerge pull request #77 from SmallGiantGames/bug415838-test
Andy Clement [Wed, 30 Jun 2021 18:43:27 +0000 (11:43 -0700)]
Merge pull request #77 from SmallGiantGames/bug415838-test

Test for 1.9.6 concurrency bug in LocalVariableTable.unpack()

3 years agominor improvements 77/head
Dmitry Mikhaylov [Tue, 29 Jun 2021 06:53:18 +0000 (09:53 +0300)]
minor improvements

3 years agoMerge pull request #73 from kriegaex/ajc-release-option
Andy Clement [Mon, 28 Jun 2021 22:31:48 +0000 (15:31 -0700)]
Merge pull request #73 from kriegaex/ajc-release-option

Enable AJC compilation with `--release`

3 years agotest for failing synchronization in LocalVariableTable.unpack
Dmitry Mikhaylov [Mon, 28 Jun 2021 14:38:28 +0000 (17:38 +0300)]
test for failing synchronization in LocalVariableTable.unpack

3 years agoAdd integration test for '--release N' compiler option 73/head
Alexander Kriegisch [Sat, 26 Jun 2021 09:18:29 +0000 (16:18 +0700)]
Add integration test for '--release N' compiler option

Relates to #70

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoAdd AspectJ 1.9.7 and Java 17 test skeletons
Alexander Kriegisch [Sat, 26 Jun 2021 09:16:18 +0000 (16:16 +0700)]
Add AspectJ 1.9.7 and Java 17 test skeletons

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoAjBuildConfig: simplify null classpath removal from path list
Alexander Kriegisch [Sat, 26 Jun 2021 02:23:41 +0000 (09:23 +0700)]
AjBuildConfig: simplify null classpath removal from path list

Use removeIf(Objects::isNull) instead of old-fashioned iterator loop.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoQuick fix for AJC '--release' option
Alexander Kriegisch [Sat, 26 Jun 2021 01:48:35 +0000 (08:48 +0700)]
Quick fix for AJC '--release' option

Work in progress, relates to #70

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #74 from kriegaex/readme-cosmetics
Andy Clement [Sat, 26 Jun 2021 04:41:42 +0000 (21:41 -0700)]
Merge pull request #74 from kriegaex/readme-cosmetics

Minor build + release read-me improvements

3 years agoMerge pull request #75 from kriegaex/minor-code-cleanup
Andy Clement [Sat, 26 Jun 2021 04:40:16 +0000 (21:40 -0700)]
Merge pull request #75 from kriegaex/minor-code-cleanup

Minor code clean-ups

3 years agoMinor code clean-ups 75/head
Alexander Kriegisch [Sat, 26 Jun 2021 02:04:08 +0000 (09:04 +0700)]
Minor code clean-ups

Add a bit more type safety and accept some minor refactorings suggested
by the IDE.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMinor build + release read-me improvements 74/head
Alexander Kriegisch [Sat, 26 Jun 2021 01:55:23 +0000 (08:55 +0700)]
Minor build + release read-me improvements

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoUpdate RELEASE.md
Andy Clement [Thu, 24 Jun 2021 23:30:58 +0000 (16:30 -0700)]
Update RELEASE.md

3 years agoSet version to 1.9.8-SNAPSHOT
Andy Clement [Thu, 24 Jun 2021 23:25:22 +0000 (16:25 -0700)]
Set version to 1.9.8-SNAPSHOT

3 years ago1.9.7 release V1_9_7
Andy Clement [Thu, 24 Jun 2021 23:23:33 +0000 (16:23 -0700)]
1.9.7 release

3 years agoMerge branch 'master' of https://github.com/eclipse/org.aspectj
Andy Clement [Thu, 24 Jun 2021 22:51:40 +0000 (15:51 -0700)]
Merge branch 'master' of https://github.com/eclipse/org.aspectj

3 years agoFinalize 1.9.7 release date
Andy Clement [Thu, 24 Jun 2021 22:51:29 +0000 (15:51 -0700)]
Finalize 1.9.7 release date

3 years agoUpdate RELEASE.md
Andy Clement [Thu, 24 Jun 2021 22:45:17 +0000 (15:45 -0700)]
Update RELEASE.md

3 years agoUpdate RELEASE.md
Andy Clement [Thu, 24 Jun 2021 22:44:58 +0000 (15:44 -0700)]
Update RELEASE.md

Fixes #71

3 years agoMerge pull request #64 from SmallGiantGames/bug415838
Andy Clement [Thu, 24 Jun 2021 22:03:11 +0000 (15:03 -0700)]
Merge pull request #64 from SmallGiantGames/bug415838

add synchronization to LocalVariableTable

3 years agoMerge pull request #69 from kriegaex/document-improve-build-profiles
Andy Clement [Thu, 10 Jun 2021 14:38:40 +0000 (07:38 -0700)]
Merge pull request #69 from kriegaex/document-improve-build-profiles

Document build profiles and properties in `docs/developer/BUILD.md`

3 years agoAdd link to BUILD.md to main README.md 69/head
Alexander Kriegisch [Thu, 10 Jun 2021 05:22:25 +0000 (12:22 +0700)]
Add link to BUILD.md to main README.md

Plus a small enhancement in the build description.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoFix minor indentation issues in org.aspectj.tools.ajdoc.Main
Alexander Kriegisch [Thu, 10 Jun 2021 05:11:52 +0000 (12:11 +0700)]
Fix minor indentation issues in org.aspectj.tools.ajdoc.Main

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoDocument build profiles and properties in docs/developer/BUILD.md
Alexander Kriegisch [Thu, 10 Jun 2021 05:11:03 +0000 (12:11 +0700)]
Document build profiles and properties in docs/developer/BUILD.md

In doing so, I also noticed a few things in need of improvement. So,
documenting the build also drive those enhancements, such as
  - the new 'fast-build' profile skipping test compilation and execution
    as well as documentation generation,
  - an option to skip generating source assemblies,
  - to skip unzipping source assemblies if javadoc generation for them
    is to be skipped too,
  - activating the 'create-docs' profile by property which is
    true by default instead of using 'activeByDefault=true', because the
    latter does not work reliably if other profiles are activated
    manually according to a Maven bug that was closed as "won't fix",
  - no longer generating separate javadocs for the 'runtime' module,
    because that module is not deployed and the main artifacts recreate
    Javadocs from scratch for all of their constituent sources anyway.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #67 from kriegaex/libs-improve-download
Andy Clement [Tue, 8 Jun 2021 04:13:39 +0000 (21:13 -0700)]
Merge pull request #67 from kriegaex/libs-improve-download

Detect previously failed downloads by verifying existing file checksums

3 years agoBuild readme whitespace cosmetics 67/head
Alexander Kriegisch [Tue, 8 Jun 2021 01:54:13 +0000 (08:54 +0700)]
Build readme whitespace cosmetics

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoDetect previously failed downloads by verifying existing file checksums
Alexander Kriegisch [Tue, 8 Jun 2021 01:52:11 +0000 (08:52 +0700)]
Detect previously failed downloads by verifying existing file checksums

There was a helpful option hiding in Download Maven plugin, which we use
to download artifacts unavailable on Maven Central, such as the Ant
installer and several source packages: 'checkSignature'. It has the
effect of verifying checksums of existing, i.e. previously downloaded
files too, not only newly downloaded ones. This helps detect interrupted
downloads from previous runs or generally invalid files, whatever the
reason. I was looking for this option before, but did not notice it
because of the name. This is about verifying checksums, not checking
signatures. Anyway, a maintainer just told me about it here:

https://github.com/maven-download-plugin/maven-download-plugin/issues/186

I requested that the option be renamed and described better.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoAdded issue tracker links
Andy Clement [Mon, 7 Jun 2021 23:30:41 +0000 (16:30 -0700)]
Added issue tracker links

3 years agoMerge pull request #66 from kriegaex/release-notes-197
Andy Clement [Mon, 7 Jun 2021 23:22:04 +0000 (16:22 -0700)]
Merge pull request #66 from kriegaex/release-notes-197

Add release notes for 1.9.7

3 years agoMerge pull request #65 from kriegaex/licence-upgrade-epl2
Andy Clement [Sun, 6 Jun 2021 23:56:17 +0000 (16:56 -0700)]
Merge pull request #65 from kriegaex/licence-upgrade-epl2

Upgrade license from CPLv1/EPLv1 to EPLv2

3 years agoAdd release notes for 1.9.7 66/head
Alexander Kriegisch [Fri, 4 Jun 2021 03:08:54 +0000 (10:08 +0700)]
Add release notes for 1.9.7

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoUpgrade license from CPLv1/EPLv1 to EPLv2 65/head
Alexander Kriegisch [Fri, 4 Jun 2021 00:58:52 +0000 (07:58 +0700)]
Upgrade license from CPLv1/EPLv1 to EPLv2

This was required by the Eclipse team as one precondition for the next
release.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoadd synchronization to LocalVariableTable 64/head
Dmitry Mikhaylov [Mon, 11 Jan 2021 19:37:36 +0000 (21:37 +0200)]
add synchronization to LocalVariableTable

3 years agoMerge pull request #62 from kriegaex/release-1.9.7.M3
Andy Clement [Fri, 28 May 2021 16:15:32 +0000 (09:15 -0700)]
Merge pull request #62 from kriegaex/release-1.9.7.M3

Bugfix release 1.9.7.M3

3 years agoMerge pull request #59 from kriegaex/deploy-installer-to-aspectj-dev
Andy Clement [Fri, 28 May 2021 16:13:57 +0000 (09:13 -0700)]
Merge pull request #59 from kriegaex/deploy-installer-to-aspectj-dev

RELEASE.md: Deploying AspectJ installer to aspectj.dev

3 years agoRemove duplicate command from RELEASE.md 62/head
Alexander Kriegisch [Fri, 28 May 2021 09:56:52 +0000 (16:56 +0700)]
Remove duplicate command from RELEASE.md

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoSet version to 1.9.7-SNAPSHOT
Alexander Kriegisch [Fri, 28 May 2021 09:56:26 +0000 (16:56 +0700)]
Set version to 1.9.7-SNAPSHOT

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoSet version to 1.9.7.M3 V1_9_7_M3
Alexander Kriegisch [Fri, 28 May 2021 08:20:36 +0000 (15:20 +0700)]
Set version to 1.9.7.M3

This is a bugfix release, reverting the essential parts of commit
f70aeb5e, because it causes AspectJ Maven integration tests using
javadoc to fail on JDK 8.

See commit discussion on
https://github.com/eclipse/org.aspectj/commit/f70aeb5e#commitcomment-51417353

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRevert "Always run javadoc using the ToolProvider API"
Alexander Kriegisch [Fri, 28 May 2021 08:11:32 +0000 (15:11 +0700)]
Revert "Always run javadoc using the ToolProvider API"

This reverts commit f70aeb5e, except for some commented-out parts of
code and an unused method. I also simplified the code, e.g. with regard
to exception handling, and did some more cosmetic stuff, but basically
it is a revert.

In order to make it compile on more recent JDKs which doe not have class
com.sun.tools.javadoc.Main, I used Class.forName in the method being
called on JDK 8 only.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRELEASE.md: Deploying AspectJ installer to aspectj.dev 59/head
Alexander Kriegisch [Wed, 26 May 2021 03:25:28 +0000 (10:25 +0700)]
RELEASE.md: Deploying AspectJ installer to aspectj.dev

How to deploy to the aspectj.dev Maven repository, mounted as a WebDAV
share.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #58 from kriegaex/release-1.9.7.M2
Andy Clement [Tue, 25 May 2021 02:07:13 +0000 (19:07 -0700)]
Merge pull request #58 from kriegaex/release-1.9.7.M2

Release 1.9.7.M2

3 years agoAdd "how to release" guide and point to it from README.md 58/head
Alexander Kriegisch [Mon, 24 May 2021 06:49:08 +0000 (13:49 +0700)]
Add "how to release" guide and point to it from README.md

Also fix a few minor wording and formatting things in the main read-me.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoSet version to 1.9.7-SNAPSHOT again
Alexander Kriegisch [Mon, 24 May 2021 03:52:47 +0000 (10:52 +0700)]
Set version to 1.9.7-SNAPSHOT again

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoSet version to 1.9.7.M2 V1_9_7_M2
Alexander Kriegisch [Mon, 24 May 2021 01:13:52 +0000 (08:13 +0700)]
Set version to 1.9.7.M2

Also depend on JDT Core 1.9.7.M2

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoFix Javadoc generation by also unpacking relocated ASM sources
Alexander Kriegisch [Mon, 24 May 2021 01:57:06 +0000 (08:57 +0700)]
Fix Javadoc generation by also unpacking relocated ASM sources

Suddenly, for AspectJ Weaver + Tools Javadoc generation started to fail.
This might be due to switching from ASM-renamed to dynamically shaded
ASM. Either way, the Javadoc tool complains about the missing source
files. Therefore, we also unpack them from the source uber JAR now via
TrueZIP before generating Javadoc.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoUpgrade Maven Shade Plugin to 3.2.4.MSHADE-252-391
Alexander Kriegisch [Sun, 23 May 2021 07:37:33 +0000 (14:37 +0700)]
Upgrade Maven Shade Plugin to 3.2.4.MSHADE-252-391

Unfortunately, the issues fixed in the aspectj.dev fork are still not
available upstream (MSHADE-252 is merged, but unreleased, MSHADE-391 is
in review).

Also use Maven Javadoc Plugin version from parent POM.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoDocumentation links
Andy Clement [Mon, 24 May 2021 00:58:28 +0000 (17:58 -0700)]
Documentation links

3 years agoSlightly more detailed readme
Andy Clement [Mon, 24 May 2021 00:49:49 +0000 (17:49 -0700)]
Slightly more detailed readme

3 years agoECA reference
Andy Clement [Mon, 24 May 2021 00:42:19 +0000 (17:42 -0700)]
ECA reference

3 years agohousekeeping
Andy Clement [Mon, 24 May 2021 00:36:18 +0000 (17:36 -0700)]
housekeeping

3 years agoMerge pull request #56 from kriegaex/canonical-snapshot-version
Andy Clement [Sun, 23 May 2021 05:09:35 +0000 (22:09 -0700)]
Merge pull request #56 from kriegaex/canonical-snapshot-version

Use canonical snapshot version 1.9.7-SNAPSHOT

3 years agoUse canonical snapshot version 1.9.7-SNAPSHOT 56/head
Alexander Kriegisch [Sun, 23 May 2021 02:42:29 +0000 (09:42 +0700)]
Use canonical snapshot version 1.9.7-SNAPSHOT

Before, we used 1.9.7.BUILD-SNAPSHOT, which according to Andy Clement
was originally an intent across a group of Spring projects he was
involved in, to ensure that SNAPSHOTS were sorted alphabetically ahead
of MILESTONEs and ahead of RCs.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRevert "polish"
Andy Clement [Sun, 23 May 2021 03:10:20 +0000 (20:10 -0700)]
Revert "polish"

This reverts commit 9ba62b64fb2fd3a8b20d259189d392d9a4b30b72.

3 years agopolish
Andy Clement [Sun, 23 May 2021 02:58:46 +0000 (19:58 -0700)]
polish

3 years agopolish
Andy Clement [Sun, 23 May 2021 02:46:04 +0000 (19:46 -0700)]
polish

3 years agoFix pom.xml problem
Andy Clement [Sun, 23 May 2021 02:41:03 +0000 (19:41 -0700)]
Fix pom.xml problem

3 years agoMerge remote-tracking branch 'xander/maven-central-deployment'
Andy Clement [Sun, 23 May 2021 01:08:43 +0000 (18:08 -0700)]
Merge remote-tracking branch 'xander/maven-central-deployment'

3 years agoMerge pull request #51 from kriegaex/remove-github-packages-references
Andy Clement [Sun, 23 May 2021 00:56:06 +0000 (17:56 -0700)]
Merge pull request #51 from kriegaex/remove-github-packages-references

Remove GitHub Packages references

3 years agoMerge pull request #53 from kriegaex/remove-asm-renamed
Andy Clement [Sun, 23 May 2021 00:55:00 +0000 (17:55 -0700)]
Merge pull request #53 from kriegaex/remove-asm-renamed

Remove ASM-renamed, replace by dynamic relocation via Maven Shade

3 years agoDelete all release POM templates in 'build' 52/head
Alexander Kriegisch [Sun, 16 May 2021 04:05:05 +0000 (11:05 +0700)]
Delete all release POM templates in 'build'

In order to keep developers from creating AspectJ releases manually or
using Ant script 'build/build.xml', get rid of all POM templates. This
step does not involve updating any build or release how-to documents or
any other clean-up work under 'build', but it is a first step and a
simple, implicit reminder that now we can build and release using Maven.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoCompletely remove module ASM-renamed + references 53/head
Alexander Kriegisch [Sun, 16 May 2021 03:22:42 +0000 (10:22 +0700)]
Completely remove module ASM-renamed + references

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoReplace use of ASM-renamed by original ASM
Alexander Kriegisch [Sun, 16 May 2021 03:17:12 +0000 (10:17 +0700)]
Replace use of ASM-renamed by original ASM

This involves replacing references in weaver application code as well as
a few tests.

In order to make AspectJ weaver + tools contain a relocated ASM version,
I added a Maven Shade relocation step after Maven Assembly created the
uber JARs. Relocation works for both binaries and sources and also
encompasses Class::forName calls like in class AsmDetector.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoFix selective Nexus deployment to Sonatype OSSRH
Alexander Kriegisch [Sat, 15 May 2021 10:34:15 +0000 (17:34 +0700)]
Fix selective Nexus deployment to Sonatype OSSRH

Other than Maven Deploy, Nexus Staging plugin cannot just be added to
the 'build/plugins' section of the parent POM once and (de-)activated
with a simple property like 'maven.deploy.skip' on a per-module basis.
See also https://issues.sonatype.org/browse/OSSRH-68966. Consequently,
we do not add it to the parent but separately to each module meant to be
published.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoOnly sign + stage artifacts meant to be deployed
Alexander Kriegisch [Sat, 15 May 2021 05:54:48 +0000 (12:54 +0700)]
Only sign + stage artifacts meant to be deployed

Even with the 'release' profile, it is not necessary to sign each
artifact, because only the ones to be published on Maven Central need
signatures.

Similarly, make Nexus staging deployment to Sonatype OSSRH dependent on
'maven.deploy.skip' and skip staging for non-public artifacts.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoCreate javadoc for all public artifacts, fix dependencies
Alexander Kriegisch [Sat, 15 May 2021 03:19:08 +0000 (10:19 +0700)]
Create javadoc for all public artifacts, fix dependencies

Sonatype OSSRH repository rules require source and javadoc JARs in
order to create staging repositories for releases to be promoted to
Maven Central. So I added build steps to unzip the source JARs and then
create Javadocs for them.

FIXME: This configuration works with JDK 16, but throws errors on other
JDK versions, e.g. 14. It looks as if the Maven Javadoc plugin does not
do a particularly good job applying the plugin settings in a way making
it work with different JDK javadoc tool versions. I am saying that,
because when using the tool directly on the console, it works with basic
settings and the correct classpath.

In order to enable creating uber JARs via Maven Shade in the future, I
also added missing dependencies. Maven Assembly descriptors just assume
that all the necessary class files and sources already exist where it
copies them from. But several of the dependency modules were not
explicitly listed as such by the uber JAR modules. I fixed that.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoAdd information required by Maven Central to public artifact POMs
Alexander Kriegisch [Wed, 12 May 2021 05:03:33 +0000 (12:03 +0700)]
Add information required by Maven Central to public artifact POMs

This is another step away from manual deployment towards Maven-triggered
deployment for both releases and snapshots. The 5 main POMs (matcher,
runtime, weaver, tools, installer) now contain information required by
Sonatype for Maven Central deployments according to:
https://central.sonatype.org/publish/requirements/

TODO:

  - Add corresponding 'distributionManagement' section and necessary
    release plugins for Sonatype OSS repositories to parent POM.

  - Enable Maven to also use Install plugin in order to automatically
    set release versions, commit to Git and tag releases, then upgrade
    to a new snapshot afterwards.

  - Make sure that Flatten Maven plugin does not strip off the required
    tags we just added to the POMs. It looks as if the chosen
    flattenMode=oss already retains the exact tags we need, only
    slightly reformatting (hence "uglifying") the POM. But an ugly POM
    does not block Maven Central deployments, as long as it is complete.
    So it looks as if this to-do item is already done.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoReplace links to aspectj.org by links to eclipse.org/aspectj
Alexander Kriegisch [Wed, 12 May 2021 04:57:12 +0000 (11:57 +0700)]
Replace links to aspectj.org by links to eclipse.org/aspectj

As discussed with Andy Clement, domain aspectj.org seems to still be
owned by Xerox, and currently no website for it is online. Therefore, it
is better to link to the AspectJ Eclipse homepage.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRemove obsolete .mvn/settings-read-github-packages.xml 51/head
Alexander Kriegisch [Sat, 15 May 2021 01:38:12 +0000 (08:38 +0700)]
Remove obsolete .mvn/settings-read-github-packages.xml

The GitHub workflow also does not reference it anymore, which I forgot
to do earlier.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRevert "use the alternate maven settings by default"
Alexander Kriegisch [Sat, 15 May 2021 01:32:57 +0000 (08:32 +0700)]
Revert "use the alternate maven settings by default"

This reverts commit @95fc5eec, because that commit was only helpful
before merging branch 'migrate-to-aspectj-dev' with PR #49, but was
actually committed afterwards, making it obsolete.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agouse the alternate maven settings by default
Andy Clement [Fri, 14 May 2021 21:50:11 +0000 (14:50 -0700)]
use the alternate maven settings by default

3 years agoMerge pull request #49 from kriegaex/migrate-to-aspectj-dev
Andy Clement [Fri, 14 May 2021 20:02:02 +0000 (13:02 -0700)]
Merge pull request #49 from kriegaex/migrate-to-aspectj-dev

Migrate deployment from GitHub Packages to aspectj.dev

3 years agoRemove jdiff
Andy Clement [Fri, 14 May 2021 15:16:29 +0000 (08:16 -0700)]
Remove jdiff

3 years agoMigrate deployment from GitHub Packages to aspectj.dev 49/head
Alexander Kriegisch [Sat, 8 May 2021 12:59:06 +0000 (19:59 +0700)]
Migrate deployment from GitHub Packages to aspectj.dev

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #48 from kriegaex/deploy-main-artifacts-only
Andy Clement [Mon, 10 May 2021 18:22:40 +0000 (11:22 -0700)]
Merge pull request #48 from kriegaex/deploy-main-artifacts-only

Only deploy main artifacts, default to no deployment for all others

3 years agoMerge pull request #46 from kriegaex/lib-auto-provisioning
Andy Clement [Mon, 10 May 2021 18:21:46 +0000 (11:21 -0700)]
Merge pull request #46 from kriegaex/lib-auto-provisioning

Provision libraries in `lib` automatically

3 years agoPrepare main artifacts to be deployed via Maven, step 2 48/head
Alexander Kriegisch [Sat, 8 May 2021 12:53:14 +0000 (19:53 +0700)]
Prepare main artifacts to be deployed via Maven, step 2

This change affects the following modules:
  - aspectjmatcher
  - aspectjrt
  - aspectjtools
  - aspectjweaver
  - installer
  - asm-renamed

Set maven.deploy.skip=false in parent POM, i.e. Maven Deploy by default
will *not deploy anything. Only in the modules above, we change the
value to 'true' in order to deploy those artifacts.

This setting works for both snapshot repositories (GitHub Packages, soon
to be migrated to aspectj.dev in a separate PR) and release
repositories, i.e. in the future also for Maven Central.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMove Enforcer Plugin to 'compile' phase in 'lib' 46/head
Alexander Kriegisch [Thu, 6 May 2021 22:23:14 +0000 (05:23 +0700)]
Move Enforcer Plugin to 'compile' phase in 'lib'

There is a strange effect in Maven builds: Depending on which profiles
are active when building the project - even seemingly unrelated ones
like 'create-docs' or 'clean-libs' - the execution order of plugins in
the 'process-resources' phase can vary. Specifically, Build Helper vs.
Enforcer in module 'lib', which both were in the same phase, can
sometimes be executed in lexical order, which I expected, or the other
way around, which makes the build fail if the existence of the marker
file is checked by Enforcer before Build Helper even had a chance to
create it. Probably, this is because Build Helper is defined inside a
profile and Enforcer outside of any.

Therefore, the safest way to ensure correct ordering of the two is to
place Enforcer in a later phase, in this case 'compile'.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoImprove 'name' tags in POMs
Alexander Kriegisch [Thu, 6 May 2021 04:54:37 +0000 (11:54 +0700)]
Improve 'name' tags in POMs

I tripped over not finding aspectjtools in my IntelliJ Maven view many
times, because it was listed as "AspectJ Compiler". So I renamed it to
"AspectJ Tools (Compiler)". Now it resembles more the artifact ID and
still retains the information that it is the artifact containing AJC.

For the 'lib' module I removed the 'name' tag again, because it is not
one of the main artifacts we publish. Now the POMs are more like Andy
might have intended them to be, using a human-readable 'name' only for
the main artifacts.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoBump download-maven-plugin 1.6.1 -> 1.6.3
Alexander Kriegisch [Wed, 5 May 2021 10:41:54 +0000 (17:41 +0700)]
Bump download-maven-plugin 1.6.1 -> 1.6.3

In the previous GitHub build, there were warnings in the log because of
failed downloads. Actually, the default is to fail the build, but that
did not happen. Let us try a more recent version, maybe it fixes an old
bug, even though in the diff between the versions I did not see anything
obvious here.

Anyway, I created an issue ticket:
https://github.com/maven-download-plugin/maven-download-plugin/issues/185

BTW, our build only failed later during the Maven Enforcer sanity check,
because several files from the check list were missing after a seemingly
successful provisioning. Actually, I am glad I added this "redundant"
double-checking step to the build, otherwise the build would not have
failed in the 'lib' module but much later in a hard to detect spot.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRemove obsolete separate GitHub build step for provisioning libraries
Alexander Kriegisch [Wed, 5 May 2021 09:41:56 +0000 (16:41 +0700)]
Remove obsolete separate GitHub build step for provisioning libraries

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoProvision libraries in 'lib' automatically
Alexander Kriegisch [Wed, 5 May 2021 09:21:53 +0000 (16:21 +0700)]
Provision libraries in 'lib' automatically

Upon special request by Andy Clement, I included 'lib' as a child module
in the parent POM again, making several modules which refer to
downloaded library files dependent the 'lib' module. I am not sure I
caught all of them, but I hope so.

Now after cloning the project and configuring the token for reading from
GitHub Packages (sorry!), you can just run a Maven build for the main
project and no longer need to fail the first build, read the Maven
Enforcer message and run 'cd lib && mvn compile' as a first step. This
convenience comes at the price of a more complex POM and two new
profiles:

  - Profile 'provision-libs' is auto-activated by the absence of a
    marker file, kicking off the library provisioning process and
    creating same marker file at the end, if successful. Therefore,
    during subsequent builds libraries will not be re-provisioned,
    because the marker file exists and Maven skips all download and
    (un)zip steps, which saves build time and bandwidth. Otherwise
    offline builds would not work either.

  - Profile 'clean-libs' needs to be activated manually, because by
    default 'mvn clean' will not erase provisioned libraries. In most
    cases, even after a clean a developer does not want to re-provision
    all libraries if they have not changed (e.g. new JDT Core build).
    But if you do wish too erase the libraries and the marker file, just
    call 'cd lib && mvn -P clean-libs clean'.

Please note: The Maven Enforcer build step, which additionally checks
for existence of other files, still exists and was moved from the parent
POM to 'libs'. No matter if provisioning was just done or skipped
because the main marker file exists, a quick heuristic check for that
list of files is done during each build, failing the build with a
comprehensive message if an inconsistency was found. The error message
says which files are missing and tells the user:

  "There is an inconsistency in module subdirectory 'lib'. Please run
  'mvn --projects lib -P clean-libs clean compile'. This should take
  care of cleaning and freshly downloading all necessary libraries to
  that directory, where some tests expect them to be."

This should cover the topic.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #44 from kriegaex/run-all-junit-tests-dependencies
Andy Clement [Wed, 28 Apr 2021 20:08:08 +0000 (13:08 -0700)]
Merge pull request #44 from kriegaex/run-all-junit-tests-dependencies

Fix missing dependencies in module 'run-all-junit-tests'

3 years agoFix missing dependencies in module 'run-all-junit-tests' 44/head
Alexander Kriegisch [Wed, 28 Apr 2021 06:54:33 +0000 (13:54 +0700)]
Fix missing dependencies in module 'run-all-junit-tests'

Some runtime dependencies are reported as unused in Maven Dependency
Plugin goal 'dependency:analyze', but actually they are needed. I
noticed by chance when running RunTheseBeforeYouCommitTests in IntelliJ
IDEA for the first time after a while and dependency modules could not
find classes.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoMerge pull request #41 from kriegaex/libs-refactoring
Andy Clement [Mon, 26 Apr 2021 04:43:22 +0000 (21:43 -0700)]
Merge pull request #41 from kriegaex/libs-refactoring

Libs refactoring (remove libs from Git SCM)

3 years agoPrepare main artifacts to be deployed via Maven, step 1 41/head
Alexander Kriegisch [Mon, 26 Apr 2021 03:02:15 +0000 (10:02 +0700)]
Prepare main artifacts to be deployed via Maven, step 1

This change affects the following modules:
  - aspectjmatcher
  - aspectjrt
  - aspectjtools
  - aspectjweaver
  - installer

They have in common that they all use Maven Assembly Plugin in order to
create some kind of uber JARs with constituent modules and/or libraries.
Except for the installer, they are all available on Maven Central today,
but I think it would not hurt to deploy the installer to there, too.

Changes made:
  - Use Flatten Maven Plugin in order to create simple POMs with only
    basic information and - most importantly - without dependencies.
  - The new dependency-reduced POM (DRP) or "flattened POM" gets
    attached to the build, i.e. it will be installed and deployed as a
    replacement of the original POM.
  - Attaching the DRP only works for 'jar' type modules, which is why I
    changed the packaging type for each module from 'pom' to 'jar'.
  - Deactivate generation of the default JAR for each module. This is
    necessary now, since we have the 'jar' packaging type.
  - Make sure that assembly descriptors using 'dependencySet' entries
    have set option 'useProjectArtifact=false' in order to avoid
    warnings about the non-existing main artifact.

TODO:
  - Explore option to migrate from Maven Assembly to Maven Shade,
    because it does not need descriptor files, can also generate source
    JARs and can automatically create and attach a DRP which is less
    fragmentary than the one created by Flatten Maven, basically the
    original JAR minus the dependencies.
  - If in the future we want to make sure to only deploy the modules
    listed above, e.g. to Maven Central, if simply calling 'mvn deploy'
    for the whole project, we could use 'maven.deploy.skip=true' in the
    parent POM and override it by 'maven.deploy.skip=false' just in the
    few modules which need to be deployed. See also:
    https://stackoverflow.com/a/29574812/1082681
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRemove build/scripts/*
Alexander Kriegisch [Fri, 16 Apr 2021 17:48:47 +0000 (00:48 +0700)]
Remove build/scripts/*

These scripts look pretty antique and obsolete.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoFix: make sure that source assemblies are attached to build
Alexander Kriegisch [Fri, 16 Apr 2021 08:30:36 +0000 (15:30 +0700)]
Fix: make sure that source assemblies are attached to build

Previously I renamed the source assemblies from the uniform name
'sources' to something more individual like 'aspectjtools-sources', not
realising that the magic name 'sources' in combination with the default
configuration value 'appendAssemblyId=true' results in an artifact
classifier equal to the assembly ID, i.e. 'sources', which is exactly
what we need here, but not quite obvious. Therefore, I documented it
with comments in both the assemblies and the POMs.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRemove some cruft from test classes Ajc, AjcTestCase, AntSpec
Alexander Kriegisch [Fri, 16 Apr 2021 06:52:07 +0000 (13:52 +0700)]
Remove some cruft from test classes Ajc, AjcTestCase, AntSpec

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
3 years agoRemove managing obsolete folder lib/asm
Alexander Kriegisch [Fri, 16 Apr 2021 05:22:46 +0000 (12:22 +0700)]
Remove managing obsolete folder lib/asm

The new string AjcTestCase.CLASSPATH_ASM_RENAMED dynamically determines
the 'asm-renamed' location from the classpath, system property
'java.class.path'.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>