blob: 354aa3b388945d43eae9f1726932455aa3db2211 (
plain)
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
|
<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>bin</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory />
<useProjectArtifact>false</useProjectArtifact>
<unpack>false</unpack>
<useTransitiveDependencies>false</useTransitiveDependencies>
</dependencySet>
<dependencySet>
<scope>compile</scope>
<outputDirectory>lib</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
<unpack>false</unpack>
<useTransitiveDependencies>true</useTransitiveDependencies>
<excludes>
<exclude>${project.groupId}:vaadin-shared</exclude>
<exclude>${project.groupId}:vaadin-push</exclude>
<exclude>${project.groupId}:vaadin-server</exclude>
<exclude>${project.groupId}:vaadin-themes</exclude>
<exclude>${project.groupId}:vaadin-client</exclude>
<exclude>${project.groupId}:vaadin-client-compiler</exclude>
<exclude>${project.groupId}:vaadin-client-compiled</exclude>
<exclude>${project.groupId}:vaadin-compatibility-shared</exclude>
<exclude>${project.groupId}:vaadin-compatibility-server</exclude>
<exclude>${project.groupId}:vaadin-compatibility-themes</exclude>
<exclude>${project.groupId}:vaadin-compatibility-client</exclude>
<exclude>${project.groupId}:vaadin-compatibility-client-compiled</exclude>
<exclude>${project.groupId}:vaadin-compatibility-server-gae</exclude>
<exclude>${project.groupId}:vaadin-osgi-integration</exclude>
<exclude>${project.groupId}:vaadin-liferay-integration</exclude>
</excludes>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<outputDirectory />
<directory>${webcontent.dir}</directory>
</fileSet>
</fileSets>
</assembly>
|