Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
3982b857
Commit
3982b857
authored
Feb 27, 2015
by
a760104
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No need to bundle AEentitybean extension in HiveHook side code
eliminates dependancy on common
parent
f6e02d43
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
105 deletions
+3
-105
pom.xml
metadata-bridge-parent/metadata-bridge-hive/pom.xml
+2
-3
src-package.xml
.../metadata-bridge-hive/src/main/assemblies/src-package.xml
+0
-42
standalone-package.xml
...ta-bridge-hive/src/main/assemblies/standalone-package.xml
+0
-59
HiveLineage.java
.../hadoop/metadata/bridge/hivelineage/hook/HiveLineage.java
+1
-1
No files found.
metadata-bridge-parent/metadata-bridge-hive/pom.xml
View file @
3982b857
...
...
@@ -72,7 +72,7 @@
<version>
2.4
</version>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
...
...
@@ -92,12 +92,11 @@
<outputDirectory>${project.build.directory}</outputDirectory>
</artifactItem>
</artifactItems>
<!-- other configurations here -->
</configuration>
</execution>
</executions>
</plugin>
-->
...
...
metadata-bridge-parent/metadata-bridge-hive/src/main/assemblies/src-package.xml
deleted
100644 → 0
View file @
f6e02d43
<?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.
-->
<assembly
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
</formats>
<id>
sources
</id>
<baseDirectory>
apache-metadata-sources-${project.version}
</baseDirectory>
<fileSets>
<fileSet>
<directory>
.
</directory>
<excludes>
<exclude>
**/target/**
</exclude>
<exclude>
**/logs/**
</exclude>
<exclude>
**/.git*/**
</exclude>
<exclude>
backlog
</exclude>
<exclude>
**/.idea/**
</exclude>
<exclude>
**/*.iml
</exclude>
<exclude>
**/*.log
</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>
metadata-bridge-parent/metadata-bridge-hive/src/main/assemblies/standalone-package.xml
deleted
100644 → 0
View file @
f6e02d43
<?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.
-->
<assembly
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
</formats>
<id>
bin
</id>
<baseDirectory>
metadata-bridge-hive-${project.version}
</baseDirectory>
<fileSets>
<fileSet>
<directory>
./
</directory>
<outputDirectory>
/
</outputDirectory>
<includes>
<include>
DISCLAIMER.txt
</include>
<include>
NOTICE.txt
</include>
<include>
LICENSE.txt
</include>
<include>
CHANGES.txt
</include>
<include>
README
</include>
</includes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>
/
</outputDirectory>
<unpack>
true
</unpack>
<scope>
compile
</scope>
<excludes>
<exclude>
junit:junit
</exclude>
<exclude>
commons-lang:commons-lang
</exclude>
<exclude>
commons-logging:commons-logging
</exclude>
<exclude>
commons-cli:commons-cli
</exclude>
<exclude>
jsch:jsch
</exclude>
<exclude>
org.apache.maven.wagon:wagon-ssh
</exclude>
<!-- TODO: can probably be removed now -->
<exclude>
plexus:plexus-container-default
</exclude>
</excludes>
</dependencySet>
</dependencySets>
</assembly>
metadata-bridge-parent/metadata-bridge-hive/src/main/java/org/apache/hadoop/metadata/bridge/hivelineage/hook/HiveLineage.java
View file @
3982b857
...
...
@@ -24,7 +24,7 @@ import java.util.ArrayList;
import
org.apache.hadoop.metadata.bridge.AEntityBean
;
public
class
HiveLineage
extends
AEntityBean
implements
Serializable
{
public
class
HiveLineage
implements
Serializable
{
/**
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment