diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-05-08 19:53:14 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-05-08 19:53:14 +0700 |
commit | 891aee0d8c96ae1ce550b25ddc303870fb7d5de3 (patch) | |
tree | 7a685ccee31828999decea632d306057d30cbd6f /installer | |
parent | bdb89385dd387464ab02d7655ac8d5486d32c2fc (diff) | |
download | aspectj-891aee0d8c96ae1ce550b25ddc303870fb7d5de3.tar.gz aspectj-891aee0d8c96ae1ce550b25ddc303870fb7d5de3.zip |
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>
Diffstat (limited to 'installer')
-rw-r--r-- | installer/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/installer/pom.xml b/installer/pom.xml index d8ada07d5..321d573a8 100644 --- a/installer/pom.xml +++ b/installer/pom.xml @@ -13,6 +13,11 @@ <artifactId>installer</artifactId> <name>AspectJ Installer</name> + <properties> + <!-- By default, do not deploy artifacts - but deploy this public one --> + <maven.deploy.skip>false</maven.deploy.skip> + </properties> + <dependencies> <dependency> <groupId>org.aspectj</groupId> |