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 /aspectjmatcher | |
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 'aspectjmatcher')
-rw-r--r-- | aspectjmatcher/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/aspectjmatcher/pom.xml b/aspectjmatcher/pom.xml index c398420af..0cba8cae9 100644 --- a/aspectjmatcher/pom.xml +++ b/aspectjmatcher/pom.xml @@ -13,6 +13,11 @@ <artifactId>aspectjmatcher</artifactId> <name>AspectJ Matcher</name> + <properties> + <!-- By default, do not deploy artifacts - but deploy this public one --> + <maven.deploy.skip>false</maven.deploy.skip> + </properties> + <build> <plugins> |