forked from pentaho/pentaho-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
91 lines (84 loc) · 3.13 KB
/
pom.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"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>pentaho</groupId>
<artifactId>pentaho-platform-ce-parent</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
</parent>
<artifactId>pentaho-platform-assemblies</artifactId>
<version>10.3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Platform assemblies</name>
<properties>
<maven-war-plugin.version>3.3.1</maven-war-plugin.version>
<plugins.directory>plugins</plugins.directory>
<pentaho-server.solutions.directory>${pentaho-server.directory}/pentaho-solutions</pentaho-server.solutions.directory>
<impl.title>Pentaho BI Platform Community Edition</impl.title>
<pentaho-server.system.directory>${pentaho-server.solutions.directory}/system</pentaho-server.system.directory>
<pentaho-server.plugins.directory>${pentaho-server.system.directory}</pentaho-server.plugins.directory>
<pentaho-server.kettle.plugins.directory>${pentaho-server.system.directory}/kettle/plugins</pentaho-server.kettle.plugins.directory>
<package.id>pentaho-server</package.id>
<pentaho-server.directory>${project.build.directory}/${package.id}</pentaho-server.directory>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>${maven-war-plugin.version}</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifestEntries>
<Implementation-Title>${impl.title}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<skipSource>true</skipSource>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>platform-user-console</id>
<activation>
<property>
<name>!skipDefault</name>
</property>
</activation>
<modules>
<module>pentaho-user-console</module>
</modules>
</profile>
<profile>
<id>platform-assemble</id>
<activation>
<property>
<name>!skipDefault</name>
</property>
</activation>
<modules>
<module>pentaho-samples</module>
<module>pentaho-plugin-samples</module>
<module>pentaho-war</module>
<module>pentaho-style</module>
<module>pentaho-data</module>
<module>pentaho-solutions</module>
<module>pentaho-server-manual</module>
<module>pentaho-server</module>
</modules>
</profile>
</profiles>
</project>