-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpom.xml
More file actions
105 lines (98 loc) · 4.06 KB
/
pom.xml
File metadata and controls
105 lines (98 loc) · 4.06 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2018 PANTHEON.tech, s.r.o. and others. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v1.0 which accompanies this distribution,
and is available at http://www.eclipse.org/legal/epl-v10.html
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.lighty</groupId>
<artifactId>lighty-aggregator</artifactId>
<version>24.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>lighty</name>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.install.skip>true</maven.install.skip>
</properties>
<modules>
<module>lighty-applications</module>
<module>lighty-core</module>
<module>lighty-examples</module>
<module>lighty-models</module>
<module>lighty-modules</module>
<module>lighty-resources</module>
<module>lighty-tests-report</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<preparationGoals>clean install</preparationGoals>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- profile to collect all licenses and generate them to file
target/generated-sources/license/THIRD-PARTY.txt
The process of generation can be executed simply by `mvn validate -P get-all-licenses`-->
<id>get-all-licenses</id>
<properties>
<license.sortArtifactByName>true</license.sortArtifactByName>
<license.force>true</license.force>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.7.0</version>
<executions>
<execution>
<id>analyze-license</id>
<goals>
<goal>aggregate-add-third-party</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<licenses>
<license>
<name>Eclipse Public License 1.0</name>
<url>https://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/PANTHEONtech/lighty.git</connection>
<developerConnection>scm:git:https://github.com/PANTHEONtech/lighty.git</developerConnection>
<url>https://github.com/PANTHEONtech/lighty</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>rovarga</id>
<name>Robert Varga</name>
<email>robert.varga@pantheon.tech</email>
<organization>PANTHEON.tech s.r.o.</organization>
<organizationUrl>https://www.pantheon.tech</organizationUrl>
</developer>
</developers>
</project>