-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathassembly.xml
More file actions
58 lines (52 loc) · 1.99 KB
/
Copy pathassembly.xml
File metadata and controls
58 lines (52 loc) · 1.99 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
<!-- ******************************************************************************
*
* Pentaho
*
* Copyright (C) 2026 by Pentaho Canada Inc. : http://www.pentaho.com
*
* Use of this software is governed by the Business Source License included
* in the LICENSE.TXT file.
*
* Change Date: 2030-06-15
******************************************************************************* -->
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3
http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>jpivot-plugin-legacy</id>
<formats>
<format>zip</format>
</formats>
<baseDirectory>jpivot</baseDirectory>
<fileSets>
<fileSet>
<directory>${project.basedir}/src/main/resources</directory>
<outputDirectory>.</outputDirectory>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<includes>
<include>org.pentaho:jpivot-plugin-static:zip</include>
</includes>
<scope>provided</scope>
<unpack>true</unpack>
<outputDirectory>.</outputDirectory>
<useTransitiveDependencies>false</useTransitiveDependencies>
<useProjectArtifact>false</useProjectArtifact>
</dependencySet>
<dependencySet>
<includes>
<include>org.pentaho:jpivot-plugin-core:jar</include>
<include>org.apache.taglibs:taglibs-standard-spec:jar</include>
<include>org.apache.taglibs:taglibs-standard-impl:jar</include>
<include>com.tonbeller:jpivot:jar</include>
<include>com.tonbeller:wcf:jar</include>
<include>com.tonbeller:tbutils-wcf:jar</include>
</includes>
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>lib</outputDirectory>
<useTransitiveDependencies>false</useTransitiveDependencies>
</dependencySet>
</dependencySets>
</assembly>