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
b17d0e97
Commit
b17d0e97
authored
7 years ago
by
nixonrodrigues
Committed by
Madhan Neethiraj
7 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2340: Fix for java.lang.IncompatibleClassChangeError while running import-hive.sh script
Signed-off-by:
Madhan Neethiraj
<
madhan@apache.org
>
parent
8535e88c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
64 additions
and
0 deletions
+64
-0
pom.xml
addons/falcon-bridge/pom.xml
+10
-0
pom.xml
addons/hbase-bridge/pom.xml
+10
-0
pom.xml
addons/hive-bridge/pom.xml
+10
-0
pom.xml
addons/sqoop-bridge/pom.xml
+10
-0
pom.xml
addons/storm-bridge/pom.xml
+10
-0
pom.xml
pom.xml
+1
-0
pom.xml
webapp/pom.xml
+13
-0
No files found.
addons/falcon-bridge/pom.xml
View file @
b17d0e97
...
...
@@ -181,6 +181,16 @@
<artifactId>
kafka-clients
</artifactId>
<version>
${kafka.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-json
</artifactId>
<version>
${jersey.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
javax.ws.rs
</groupId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
...
...
This diff is collapsed.
Click to expand it.
addons/hbase-bridge/pom.xml
View file @
b17d0e97
...
...
@@ -320,6 +320,16 @@
<artifactId>
hbase-common
</artifactId>
<version>
${hbase.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-json
</artifactId>
<version>
${jersey.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
javax.ws.rs
</groupId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
...
...
This diff is collapsed.
Click to expand it.
addons/hive-bridge/pom.xml
View file @
b17d0e97
...
...
@@ -288,6 +288,16 @@
<artifactId>
hbase-common
</artifactId>
<version>
${hbase.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-json
</artifactId>
<version>
${jersey.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
javax.ws.rs
</groupId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
...
...
This diff is collapsed.
Click to expand it.
addons/sqoop-bridge/pom.xml
View file @
b17d0e97
...
...
@@ -243,6 +243,16 @@
<artifactId>
kafka-clients
</artifactId>
<version>
${kafka.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-json
</artifactId>
<version>
${jersey.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
javax.ws.rs
</groupId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
...
...
This diff is collapsed.
Click to expand it.
addons/storm-bridge/pom.xml
View file @
b17d0e97
...
...
@@ -262,6 +262,16 @@
<artifactId>
log4j
</artifactId>
<version>
${log4j.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-json
</artifactId>
<version>
${jersey.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
javax.ws.rs
</groupId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
...
...
This diff is collapsed.
Click to expand it.
pom.xml
View file @
b17d0e97
...
...
@@ -530,6 +530,7 @@
<jetty.version>
9.3.14.v20161028
</jetty.version>
<jetty.jsp.version>
9.2.12.v20150709
</jetty.jsp.version>
<jersey.version>
1.19
</jersey.version>
<jsr.version>
1.1
</jsr.version>
<hadoop.version>
2.7.1
</hadoop.version>
<hbase.version>
1.1.2
</hbase.version>
...
...
This diff is collapsed.
Click to expand it.
webapp/pom.xml
View file @
b17d0e97
...
...
@@ -237,6 +237,19 @@
</dependency>
<dependency>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-json
</artifactId>
<version>
${jersey.version}
</version>
</dependency>
<dependency>
<groupId>
javax.ws.rs
</groupId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
</dependency>
<dependency>
<groupId>
org.mockito
</groupId>
<artifactId>
mockito-all
</artifactId>
</dependency>
...
...
This diff is collapsed.
Click to expand it.
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