-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathassembly.xml
91 lines (86 loc) · 2.97 KB
/
assembly.xml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation
~
~ This program and the accompanying materials are made available under the
~ terms of the Eclipse Public License v. 2.0, which is available at
~ http://www.eclipse.org/legal/epl-2.0.
~
~ This Source Code may also be made available under the following Secondary
~ Licenses when the conditions for such availability set forth in the
~ Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
~ version 2 with the GNU Classpath Exception, which is available at
~ https://www.gnu.org/software/classpath/license.html.
~
~ SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
<id>dist</id>
<formats>
<format>zip</format>
</formats>
<baseDirectory>data-tck-${jakarta.data.tck.version}</baseDirectory>
<files>
<!-- This is the final EFTL license -->
<file>
<source>src/main/EFTL.txt</source>
<destName>LICENSE</destName>
</file>
<!-- The readme included in the distribution zip -->
<file>
<source>src/main/readme/README.md</source>
<destName>README.md</destName>
</file>
<!-- The jakarta.data-parent pom file -->
<file>
<source>../pom.xml</source>
<destName>artifacts/jakarta.data-parent-${project.version}.pom</destName>
</file>
</files>
<fileSets>
<!-- The artifacts -->
<fileSet>
<directory>src/main/artifacts/</directory>
<outputDirectory>/artifacts</outputDirectory>
<includes>
<include>**/*.sh</include>
<include>**/*.txt</include>
</includes>
</fileSet>
<!-- The docs -->
<fileSet>
<directory>target/generated-docs</directory>
<outputDirectory>/docs</outputDirectory>
<includes>
<include>**/*.html</include>
<include>**/*.pdf</include>
</includes>
</fileSet>
<!-- The starter -->
<fileSet>
<directory>src/main/starter/</directory>
<outputDirectory>/starter</outputDirectory>
</fileSet>
<!-- Signature files -->
<fileSet>
<directory>${project.parent.basedir}/tck/src/main/resources/ee/jakarta/tck/data/framework/signature/</directory>
<outputDirectory>/artifacts</outputDirectory>
<includes>
<include>**/*.sig*</include>
</includes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<includes>
<include>jakarta.data:jakarta.data-tck</include>
<include>jakarta.data:jakarta.data-tck:jar:sources</include>
</includes>
<useTransitiveDependencies>true</useTransitiveDependencies>
<outputDirectory>artifacts</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
</dependencySets>
</assembly>