-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpom.xml
97 lines (89 loc) · 3.57 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
92
93
94
95
96
97
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2014-2024 Takari, Inc.
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
https://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>
<parent>
<groupId>io.takari</groupId>
<artifactId>takari</artifactId>
<version>60</version>
</parent>
<groupId>io.takari.maven.plugins</groupId>
<artifactId>takari-lifecycle</artifactId>
<version>2.2.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>takari-lifecycle-plugin</module>
<!-- TODO consider moving integration tests to the main module -->
<module>takari-lifecycle-plugin-its</module>
</modules>
<scm>
<connection>scm:git:[email protected]:takari/takari-lifecycle.git</connection>
<developerConnection>scm:git:[email protected]:takari/takari-lifecycle.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/takari/takari-lifecycle</url>
</scm>
<properties>
<mavenVersion>3.9.9</mavenVersion>
<aetherVersion>1.9.22</aetherVersion>
<sisuVersion>0.9.0.M3</sisuVersion>
<incrementalbuild.version>1.0.3</incrementalbuild.version>
<guava.version>33.3.0-jre</guava.version>
<mavenPluginPluginVersion>3.15.0</mavenPluginPluginVersion>
<m2eWorkspaceVersion>0.4.0</m2eWorkspaceVersion>
<plexusUtilsVersion>4.0.1</plexusUtilsVersion>
<plexusXmlVersion>3.0.1</plexusXmlVersion>
<pluginTestingVersion>3.0.5</pluginTestingVersion>
</properties>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<filtering>true</filtering>
<directory>src/main/resources-filtered</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>io.takari.maven.plugins</groupId>
<artifactId>takari-lifecycle-plugin</artifactId>
<dependencies>
<dependency>
<groupId>io.takari.m2e.workspace</groupId>
<artifactId>org.eclipse.m2e.workspace.cli</artifactId>
<version>${m2eWorkspaceVersion}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<licenseSets>
<licenseSet>
<excludes combine.children="append">
<!-- don't override copyright of code copied from other projects -->
<!--
| Please note that license-plugin is quite dumb and processes the same sources multiple times
| once per each level of parent/module hierarchy. This means the same excludes has to be configured
| on each hierarchy level too. (or hope we remember to run "mvn -N license:format", which I am sure
| we'll forget)
-->
<exclude>**/src/main/java/io/takari/maven/plugins/compile/jdt/ReferenceCollection.java</exclude>
</excludes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>