diff options
author | Andy Clement <aclement@pivotal.io> | 2020-07-17 17:29:08 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2020-07-17 17:29:08 -0700 |
commit | 199aaba33af3874bc5b27a7af2ac60a2dadbeab2 (patch) | |
tree | ecb845c3ef2be6584193cad18761f3e7355fb9c8 /aspectjmatcher/aspectjmatcher-sources-assembly.xml | |
parent | 4f6619ca4b0a5c0b86bd0024fc618c5303567b38 (diff) | |
download | aspectj-199aaba33af3874bc5b27a7af2ac60a2dadbeab2.tar.gz aspectj-199aaba33af3874bc5b27a7af2ac60a2dadbeab2.zip |
Update ASM and fix packaging for matcher artifact
Diffstat (limited to 'aspectjmatcher/aspectjmatcher-sources-assembly.xml')
-rw-r--r-- | aspectjmatcher/aspectjmatcher-sources-assembly.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/aspectjmatcher/aspectjmatcher-sources-assembly.xml b/aspectjmatcher/aspectjmatcher-sources-assembly.xml new file mode 100644 index 000000000..cb55a4667 --- /dev/null +++ b/aspectjmatcher/aspectjmatcher-sources-assembly.xml @@ -0,0 +1,29 @@ +<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> + + <id>sources</id> + + <formats> + <format>jar</format> + </formats> + + <includeBaseDirectory>false</includeBaseDirectory> + + <fileSets> + <fileSet> + <directory>../util/src/main/java</directory> + <outputDirectory>.</outputDirectory> + </fileSet> + <fileSet> + <directory>../bridge/src/main/java</directory> + <outputDirectory>.</outputDirectory> + </fileSet> + <fileSet> + <directory>../org.aspectj.matcher/src/main/java</directory> + <outputDirectory>.</outputDirectory> + </fileSet> + </fileSets> + +</assembly> + |