Repository: atlas Updated Branches: refs/heads/master f62ed0926 -> b7641e742
ATLAS-2668: Add OMAG server to distribution Signed-off-by: David Radley <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/b7641e74 Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/b7641e74 Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/b7641e74 Branch: refs/heads/master Commit: b7641e74239f8fcd339b8226f0f40f6d69502b69 Parents: f62ed09 Author: Nigel Jones <[email protected]> Authored: Thu May 10 15:36:17 2018 +0100 Committer: David Radley <[email protected]> Committed: Mon May 14 09:14:07 2018 +0100 ---------------------------------------------------------------------- distro/pom.xml | 1 + distro/src/main/assemblies/omag-server.xml | 53 +++++++++++++++++++++++++ omag-server/README.md | 24 +++++++++++ omag-server/pom.xml | 8 ++-- 4 files changed, 82 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/atlas/blob/b7641e74/distro/pom.xml ---------------------------------------------------------------------- diff --git a/distro/pom.xml b/distro/pom.xml index 6431fd8..379ff0d 100644 --- a/distro/pom.xml +++ b/distro/pom.xml @@ -120,6 +120,7 @@ atlas.graph.index.search.solr.wait-searcher=true <descriptor>src/main/assemblies/standalone-package.xml</descriptor> <descriptor>src/main/assemblies/src-package.xml</descriptor> <descriptor>src/main/assemblies/migration-exporter.xml</descriptor> + <descriptor>src/main/assemblies/omag-server.xml</descriptor> </descriptors> <finalName>apache-atlas-${project.version}</finalName> <tarLongFileMode>gnu</tarLongFileMode> http://git-wip-us.apache.org/repos/asf/atlas/blob/b7641e74/distro/src/main/assemblies/omag-server.xml ---------------------------------------------------------------------- diff --git a/distro/src/main/assemblies/omag-server.xml b/distro/src/main/assemblies/omag-server.xml new file mode 100644 index 0000000..9c4747e --- /dev/null +++ b/distro/src/main/assemblies/omag-server.xml @@ -0,0 +1,53 @@ +<?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:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" + 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> + <format>dir</format> + </formats> + <id>omag-server</id> + <baseDirectory>omag-server-${project.version}</baseDirectory> + <fileSets> + <fileSet> + <directory>../omag-server/target</directory> + <outputDirectory>.</outputDirectory> + <includes> + <include>*.jar</include> + <include>*.sh</include> + + </includes> + <fileMode>0755</fileMode> + <directoryMode>0755</directoryMode> + </fileSet> + <fileSet> + <directory>../omag-server</directory> + <outputDirectory>.</outputDirectory> + <includes> + <include>*.md</include> + + </includes> + <fileMode>0755</fileMode> + <directoryMode>0755</directoryMode> + + </fileSet> + + </fileSets> +</assembly> http://git-wip-us.apache.org/repos/asf/atlas/blob/b7641e74/omag-server/README.md ---------------------------------------------------------------------- diff --git a/omag-server/README.md b/omag-server/README.md new file mode 100644 index 0000000..f47466e --- /dev/null +++ b/omag-server/README.md @@ -0,0 +1,24 @@ +<!-- + ~ 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. + --> + # Open Metadata And Governance Server + +See https://cwiki.apache.org/confluence/display/ATLAS/OMAG+Server+Package for more information about the OMAG Server Package + +**Launching the standalone server** + + java -jar ./omag-server-1.0.0-SNAPSHOT.jar http://git-wip-us.apache.org/repos/asf/atlas/blob/b7641e74/omag-server/pom.xml ---------------------------------------------------------------------- diff --git a/omag-server/pom.xml b/omag-server/pom.xml index 4c1c98a..527c5c3 100644 --- a/omag-server/pom.xml +++ b/omag-server/pom.xml @@ -121,13 +121,13 @@ <build> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>2.4</version> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <version>1.5.10.RELEASE</version> <executions> <execution> <goals> - <goal>test-jar</goal> + <goal>repackage</goal> </goals> </execution> </executions>
