-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdistribution.xml
More file actions
62 lines (57 loc) · 2.08 KB
/
distribution.xml
File metadata and controls
62 lines (57 loc) · 2.08 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>distribution</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<dependencySets>
<dependencySet>
<includes>
<include>org.epics:*</include>
</includes>
<excludes>
<exclude>org.epics:epics-directoryService</exclude>
<exclude>org.epics:epics-example*</exclude>
</excludes>
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>core</outputDirectory>
</dependencySet>
<dependencySet>
<includes>
<include>org.epics:epics-directoryService</include>
<include>org.epics:epics-example*</include>
</includes>
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>examples</outputDirectory>
</dependencySet>
<dependencySet>
<excludes>
<exclude>org.epics:*</exclude>
</excludes>
<outputDirectory>examples/lib</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
</dependencySets>
<files>
<file>
<source>LICENSE.txt</source>
<outputDirectory>.</outputDirectory>
</file>
<file>
<source>bundled_files/README.md</source>
<outputDirectory>.</outputDirectory>
</file>
<file>
<source>bundled_files/RELEASE_NOTES.md</source>
<outputDirectory>.</outputDirectory>
</file>
</files>
</assembly>