-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom-ci.xml
82 lines (71 loc) · 2.6 KB
/
pom-ci.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
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>
<groupId>org.dashjoin</groupId>
<artifactId>dashjoin-all</artifactId>
<version>${revision}</version>
<modules>
<module>angular</module>
<module>dashjoin</module>
<module>/</module>
</modules>
<properties>
<revision>0.0.1-SNAPSHOT</revision>
<!-- option to skip the long running Angular build -->
<skipAngular>false</skipAngular>
<compiler-plugin.version>3.11.0</compiler-plugin.version>
<maven.compiler.parameters>true</maven.compiler.parameters>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.15.2</quarkus.platform.version>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
</properties>
<packaging>pom</packaging>
<!-- parent>
<groupId>org.dashjoin</groupId>
<artifactId>dashjoin-base</artifactId>
<version>${revision}</version>
<relativePath>../../query-editor</relativePath>
</parent>
-->
<build>
<plugins>
<!-- In order to make this POM consumable when installed or published,
we need to make sure all variables like ${revision} are set to their actual values.
Note that Eclipse does not know how to handle this plugin, therefore there is
an exclusion in "lifecycle-mapping" (otherwise it shows an error in Eclipse) -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.4.1</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>