Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rgoers committed May 5, 2024
1 parent 168caa6 commit b2e67f4
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 2 deletions.
40 changes: 40 additions & 0 deletions .asf.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# 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.

# `.asf.yaml` is a branch-specific YAML configuration file for Git repositories to control features such as notifications, GitHub settings, etc.
# See its documentation for details: https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features

notifications:
# GitHub already provides notifications for PRs and issues.
# Please don't duplicate that noise here!
commits: commits@logging.apache.org
jira_options: link label
github:
description: "Apache Flume is a distributed, reliable, and available service for efficiently collecting, aggregating, and moving large amounts of log-like data"
homepage: https://flume.apache.org/
features:
issues: true
del_branch_on_merge: true
autolink_jira:
- FLUME
labels:
- apache
- api
- java
- jvm
- library
- flume
protected_branches:
main: {}
2 changes: 1 addition & 1 deletion flume-ng-configfilters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ limitations under the License.

<artifactId>flume-ng-configfilters</artifactId>
<packaging>pom</packaging>
<name>Flume NG Hadoop Credential Store Config Filter</name>
<name>Flume NG Config Filters</name>

<modules>
<module>flume-ng-environment-variable-config-filter</module>
Expand Down
13 changes: 12 additions & 1 deletion flume-ng-sinks/flume-hive-sink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ limitations under the License.
<repositories>
<!-- Our current hive version needs a calcite version that has dependencies not available in Maven Central.
The pom from calcite gives the HTTP version of this repo address, which gets ignored by current maven.
The original conjars repo is dead. Use the read-only mirror.
-->
<repository>
<releases>
Expand All @@ -49,10 +50,20 @@ limitations under the License.
</releases>
<id>conjars</id>
<name>Conjars</name>
<url>https://conjars.org/repo</url>
<url>https://conjars.wensel.net/repo/</url>
<layout>default</layout>
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.1-b12</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>

Expand Down
6 changes: 6 additions & 0 deletions flume-ng-sinks/flume-ng-hbase2-sink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@
<version>${hbase2.version}</version>
</dependency>

<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.1-b12</version>
</dependency>

</dependencies>
</dependencyManagement>
<dependencies>
Expand Down

0 comments on commit b2e67f4

Please sign in to comment.