aboutsummaryrefslogtreecommitdiffstats
path: root/aspectjmatcher
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-04-26 10:02:15 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-04-26 10:02:15 +0700
commit18f3385e23b13b385edcbcc81dbb52623607dd8f (patch)
tree01635f34664ae1ce1baa7de112288ec0a6c5116a /aspectjmatcher
parentf1f46b4e8bf743c0ade1a26e96591b819108d5af (diff)
downloadaspectj-18f3385e23b13b385edcbcc81dbb52623607dd8f.tar.gz
aspectj-18f3385e23b13b385edcbcc81dbb52623607dd8f.zip
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>
Diffstat (limited to 'aspectjmatcher')
-rw-r--r--aspectjmatcher/pom.xml32
1 files changed, 30 insertions, 2 deletions
diff --git a/aspectjmatcher/pom.xml b/aspectjmatcher/pom.xml
index b183bd3d6..c398420af 100644
--- a/aspectjmatcher/pom.xml
+++ b/aspectjmatcher/pom.xml
@@ -11,18 +11,21 @@
</parent>
<artifactId>aspectjmatcher</artifactId>
- <packaging>pom</packaging>
<name>AspectJ Matcher</name>
<build>
<plugins>
- <!-- skip creation of test-jar in here -->
+ <!-- Skip creation of main + test JARs -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
+ <id>default-jar</id>
+ <phase>none</phase>
+ </execution>
+ <execution>
<id>test-jar</id>
<phase>none</phase>
</execution>
@@ -116,6 +119,31 @@
</executions>
</plugin>
+ <!-- Caveat: Attaching the flattened POM needs packaging=jar, so do not use packaging=pom for this module -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>flatten-maven-plugin</artifactId>
+ <executions>
+ <!-- Remove dependencies declared in this POM (if any) from uber JAR and strip down POM -->
+ <execution>
+ <id>flatten</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>flatten</goal>
+ </goals>
+ <configuration>
+ <flattenMode>oss</flattenMode>
+ <pomElements>
+ <dependencies>remove</dependencies>
+ <repositories>remove</repositories>
+ </pomElements>
+ <outputDirectory>${project.build.directory}</outputDirectory>
+ <flattenedPomFilename>flattened-pom.xml</flattenedPomFilename>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
</project>