-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpom.xml
More file actions
139 lines (122 loc) · 5.41 KB
/
Copy pathpom.xml
File metadata and controls
139 lines (122 loc) · 5.41 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to you under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" child.project.url.inherit.append.path="false" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.logging</groupId>
<artifactId>logging-parent</artifactId>
<version>12.1.1</version>
<relativePath />
</parent>
<groupId>org.apache.flume</groupId>
<artifactId>flume-project</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>Apache Flume Project</name>
<description>Aggregator for the main Apache Flume repository.
This artifact is not published to Maven Central.</description>
<url>https://logging.apache.org/flume/2.x/index.html</url>
<inceptionYear>2009</inceptionYear>
<!-- Override the Log4j-specific mailing lists inherited from `logging-parent`. -->
<mailingLists>
<mailingList>
<name>flume-users</name>
<subscribe>flume-users-subscribe@logging.apache.org</subscribe>
<unsubscribe>flume-users-unsubscribe@logging.apache.org</unsubscribe>
<post>flume-users@logging.apache.org</post>
<archive>https://lists.apache.org/list.html?flume-users@logging.apache.org</archive>
</mailingList>
<mailingList>
<name>dev</name>
<subscribe>dev-subscribe@logging.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@logging.apache.org</unsubscribe>
<post>dev@logging.apache.org</post>
<archive>https://lists.apache.org/list.html?dev@logging.apache.org</archive>
</mailingList>
</mailingLists>
<modules>
<module>flume-bom</module>
<module>flume-third-party</module>
<module>flume-parent</module>
<module>flume-ng-core</module>
<module>flume-ng-configuration</module>
<module>flume-ng-sources</module>
<module>flume-ng-instrumentation</module>
<module>flume-ng-node</module>
<!-- Disable until all snapshots are published
<module>flume-ng-dist</module>
-->
<module>flume-ng-channels</module>
<module>flume-ng-sdk</module>
<module>flume-ng-sdk-test</module>
<!-- Temporarily disable integration tests
<module>flume-ng-tests</module>
-->
<module>flume-tools</module>
<module>flume-ng-auth</module>
<module>flume-ng-configfilters</module>
</modules>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:https://gitbox.apache.org/repos/asf/logging-flume.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/logging-flume.git</developerConnection>
<tag>rel/${revision}</tag>
<url>https://gitbox.apache.org/repos/asf/logging-flume.git</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/apache/logging-flume/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/apache/logging-flume/actions</url>
</ciManagement>
<properties>
<revision>2.0.0-SNAPSHOT</revision>
<!-- Dummy value; overwritten by CI at release time. Do not edit manually. -->
<project.build.outputTimestamp>2026-01-01T00:00:00Z</project.build.outputTimestamp>
<!-- The website is generated by Antora from the root module: skip the per-module `maven-site-plugin` sites. -->
<maven.site.skip>true</maven.site.skip>
<!-- `flume-project` is only a reactor aggregator: it is neither installed nor deployed.
The published children (`flume-dependencies`, `flume-third-party-dependencies`) override these back to `false`. -->
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<profiles>
<!-- Read additional RAT exclusions from the `.rat-excludes` file at the root of the repository, if present.
The code modules inherit the same profile from `flume-parent`, but this aggregator does not. -->
<profile>
<id>rat-excludes-file</id>
<activation>
<file>
<exists>${maven.multiModuleProjectDirectory}/.rat-excludes</exists>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludesFile>${maven.multiModuleProjectDirectory}/.rat-excludes</excludesFile>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>