forked from vsch/flexmark-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbin.xml
More file actions
33 lines (33 loc) · 1.66 KB
/
Copy pathbin.xml
File metadata and controls
33 lines (33 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<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>lib</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<moduleSets>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<!-- Now, select which projects to include in this module-set. -->
<includes>
<include>com.vladsch.flexmark:flexmark-util-ast</include>
<include>com.vladsch.flexmark:flexmark-util-builder</include>
<include>com.vladsch.flexmark:flexmark-util-collection</include>
<include>com.vladsch.flexmark:flexmark-util-data</include>
<include>com.vladsch.flexmark:flexmark-util-dependency</include>
<include>com.vladsch.flexmark:flexmark-util-format</include>
<include>com.vladsch.flexmark:flexmark-util-html</include>
<include>com.vladsch.flexmark:flexmark-util-misc</include>
<include>com.vladsch.flexmark:flexmark-util-options</include>
<include>com.vladsch.flexmark:flexmark-util-sequence</include>
<include>com.vladsch.flexmark:flexmark-util-visitor</include>
</includes>
<binaries>
<includeDependencies>false</includeDependencies>
<outputDirectory>./</outputDirectory>
<unpack>true</unpack>
</binaries>
</moduleSet>
</moduleSets>
</assembly>