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
100fee3d
Commit
100fee3d
authored
Jan 17, 2017
by
Madhan Neethiraj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-1000: added build instructions to README.txt
(cherry picked from commit 8f3eb0c29e99db7b59dbd85054333f796bc1edfa)
parent
10e82ff4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
2 deletions
+94
-2
README.txt
README.txt
+22
-2
release-build.xml
release-build.xml
+72
-0
No files found.
README.txt
View file @
100fee3d
...
...
@@ -37,4 +37,25 @@ Software Foundation (ASF), sponsored by the Apache Incubator PMC.
For more information about the incubation status of the Apache Atlas
project you can go to the following page:
http://incubator.apache.org/projects/atlas.html
\ No newline at end of file
http://incubator.apache.org/projects/atlas.html
Build Process
=============
1. Check out the code from GIT repository
$ git clone https://github.com/apache/incubator-atlas.git
2. Execute the following commands to build Apache Atlas
$ cd incubator-atlas
$ export MAVEN_OPTS="-Xms2g -Xmx2g -XX:MaxPermSize=512M"
$ mvn clean install
$ mvn clean package -Pdist
3. After the above build commands successfully complete, you should see the following files
webapp/target/atlas-webapp-<version>.war
addons/falcon-bridge/target/falcon-bridge-<version>.jar
addons/hive-bridge/target/hive-bridge-<version>.jar
addons/sqoop-bridge/target/sqoop-bridge-<version>.jar
addons/storm-bridge/target/storm-bridge-<version>.jar
release-build.xml
0 → 100644
View file @
100fee3d
<?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
name=
"Apache Atlas Release Tasks"
default=
"build-release"
>
<description>
Apache Atlas Build Release Tasks
</description>
<property
name=
"release-dir"
value=
"target"
/>
<property
name=
"incubationstr"
value=
"-incubating"
/>
<property
name=
"release-name"
value=
"apache-atlas-${atlas-release-version}${incubationstr}"
/>
<property
name=
"build-release-tar-file"
value=
"${release-name}-sources.tar.gz"
/>
<target
name=
"version-check"
>
<fail
message=
"Missing atlas-release-version; -Datlas-release-version=<version-number> should be defined"
unless=
"atlas-release-version"
/>
</target>
<target
name=
"build-release"
depends=
"version-check"
>
<tstamp/>
<exec
executable=
"mvn"
>
<arg
value=
"clean"
/>
</exec>
<mkdir
dir=
"${release-dir}"
/>
<tar
destfile=
"${release-dir}/${build-release-tar-file}"
compression=
"gzip"
longfile=
"posix"
>
<tarfileset
prefix=
"${release-name}"
dir=
"."
>
<exclude
name=
"git"
/>
<exclude
name=
"*/.gitignore"
/>
<exclude
name=
".settings/**"
/>
<exclude
name=
"*/.settings/**"
/>
<exclude
name=
".classpath"
/>
<exclude
name=
"*/.classpath"
/>
<exclude
name=
".project"
/>
<exclude
name=
"*/.project"
/>
<exclude
name=
"winpkg/*"
/>
<exclude
name=
"hdfs-agent/dependency-reduced-pom.xml"
/>
<exclude
name=
"*/bin/**"
/>
<exclude
name=
"*/target/**"
/>
<exclude
name=
"**/.DS_Store"
/>
<exclude
name=
"target/**"
/>
</tarfileset>
</tar>
<exec
executable=
"gpg"
>
<arg
value=
"--armor"
/>
<arg
value=
"--output"
/>
<arg
value=
"${release-dir}/${build-release-tar-file}.asc"
/>
<arg
value=
"--detach-sig"
/>
<arg
value=
"${release-dir}/${build-release-tar-file}"
/>
</exec>
<exec
executable=
"gpg"
output=
"${release-dir}/${build-release-tar-file}.mds"
>
<arg
value=
"--print-mds"
/>
<arg
value=
"${release-dir}/${build-release-tar-file}"
/>
</exec>
</target>
</project>
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