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
5892de67
Commit
5892de67
authored
6 years ago
by
Zsombor Gegesy
Committed by
nixonrodrigues
6 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-3045: Fix atlas-server-package.xml and add a new classification-updater assembly
Change-Id: I5fd1b909942d2f4e3282ad3407ee29547fb6c52b
parent
dfc346d3
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
76 additions
and
1 deletion
+76
-1
pom.xml
distro/pom.xml
+1
-1
atlas-server-package.xml
distro/src/main/assemblies/atlas-server-package.xml
+20
-0
classification-updater.xml
distro/src/main/assemblies/classification-updater.xml
+54
-0
pom.xml
pom.xml
+1
-0
No files found.
distro/pom.xml
View file @
5892de67
...
@@ -131,12 +131,12 @@ atlas.graph.index.search.solr.wait-searcher=true
...
@@ -131,12 +131,12 @@ atlas.graph.index.search.solr.wait-searcher=true
<descriptor>
src/main/assemblies/atlas-falcon-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-falcon-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-sqoop-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-sqoop-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-storm-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-storm-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-falcon-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-kafka-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-kafka-hook-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-server-package.xml
</descriptor>
<descriptor>
src/main/assemblies/atlas-server-package.xml
</descriptor>
<descriptor>
src/main/assemblies/standalone-package.xml
</descriptor>
<descriptor>
src/main/assemblies/standalone-package.xml
</descriptor>
<descriptor>
src/main/assemblies/src-package.xml
</descriptor>
<descriptor>
src/main/assemblies/src-package.xml
</descriptor>
<!--<descriptor>src/main/assemblies/migration-exporter.xml</descriptor>-->
<!--<descriptor>src/main/assemblies/migration-exporter.xml</descriptor>-->
<descriptor>
src/main/assemblies/classification-updater.xml
</descriptor>
</descriptors>
</descriptors>
<finalName>
apache-atlas-${project.version}
</finalName>
<finalName>
apache-atlas-${project.version}
</finalName>
<tarLongFileMode>
gnu
</tarLongFileMode>
<tarLongFileMode>
gnu
</tarLongFileMode>
...
...
This diff is collapsed.
Click to expand it.
distro/src/main/assemblies/atlas-server-package.xml
View file @
5892de67
...
@@ -104,6 +104,26 @@
...
@@ -104,6 +104,26 @@
<directoryMode>
0755
</directoryMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
</fileSet>
<!-- for classification-updater -->
<fileSet>
<directory>
../tools/classification-updater/src/main/resources
</directory>
<outputDirectory>
tools/classification-updater
</outputDirectory>
<includes>
<include>
*.sh
</include>
<include>
atlas-log4j.xml
</include>
</includes>
<fileMode>
0755
</fileMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
<fileSet>
<directory>
../tools/classification-updater/target
</directory>
<outputDirectory>
tools/classification-updater
</outputDirectory>
<includes>
<include>
atlas-classification-updater-${project.version}.jar
</include>
</includes>
</fileSet>
<fileSet>
<fileSet>
<directory>
../
</directory>
<directory>
../
</directory>
<outputDirectory>
/
</outputDirectory>
<outputDirectory>
/
</outputDirectory>
...
...
This diff is collapsed.
Click to expand it.
distro/src/main/assemblies/classification-updater.xml
0 → 100644
View file @
5892de67
<!--
**
* 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>
<id>
classification-updater
</id>
<formats>
<format>
dir
</format>
<format>
zip
</format>
</formats>
<baseDirectory>
atlas-classification-updater
</baseDirectory>
<fileSets>
<fileSet>
<includes>
<include>
README*
</include>
</includes>
</fileSet>
<fileSet>
<directory>
../tools/classification-updater/src/main/resources
</directory>
<outputDirectory>
.
</outputDirectory>
<includes>
<include>
*.sh
</include>
<include>
atlas-log4j.xml
</include>
</includes>
<fileMode>
0755
</fileMode>
<directoryMode>
0755
</directoryMode>
</fileSet>
<fileSet>
<directory>
../tools/classification-updater/target
</directory>
<outputDirectory>
.
</outputDirectory>
<includes>
<include>
atlas-classification-updater-${project.version}.jar
</include>
</includes>
</fileSet>
</fileSets>
</assembly>
This diff is collapsed.
Click to expand it.
pom.xml
View file @
5892de67
...
@@ -783,6 +783,7 @@
...
@@ -783,6 +783,7 @@
<module>
addons/hbase-bridge
</module>
<module>
addons/hbase-bridge
</module>
<module>
addons/hbase-testing-util
</module>
<module>
addons/hbase-testing-util
</module>
<module>
addons/kafka-bridge
</module>
<module>
addons/kafka-bridge
</module>
<module>
tools/classification-updater
</module>
<module>
distro
</module>
<module>
distro
</module>
</modules>
</modules>
...
...
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