Skip to content

Commit c1c692b

Browse files
authored
ATLAS-5261: ATLAS-5262: ATLAS-5263: ATLAS-5265: Fix code coverage, quick-start dsl issue and optimize atlas.war size and enhance release build to checksum artifacts
* ATLAS-5261: ATLAS-5262: ATLAS-5263: ATLAS-5265: Fix code coverage, quick-start dsl issue and optimize atlas.war size and enhance release build to checksum artifacts
1 parent 459281e commit c1c692b

4 files changed

Lines changed: 22 additions & 10 deletions

File tree

dev-support/checks/coverage.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash
2+
23
# Licensed to the Apache Software Foundation (ASF) under one or more
34
# contributor license agreements. See the NOTICE file distributed with
45
# this work for additional information regarding copyright ownership.

release-build.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</description>
2222

2323
<property name="release-dir" value="target" />
24-
<property name="incubationstr" value="-incubating" />
24+
<property name="incubationstr" value="" />
2525
<property name="release-name" value="apache-atlas-${atlas-release-version}${incubationstr}" />
2626

2727
<property name="build-release-tar-file" value="${release-name}-sources.tar.gz" />
@@ -68,5 +68,23 @@
6868
<arg value="--print-mds" />
6969
<arg value="${release-dir}/${build-release-tar-file}" />
7070
</exec>
71+
72+
<exec executable="gpg" output="${release-dir}/${build-release-tar-file}.md5">
73+
<arg value="--print-md" />
74+
<arg value="MD5" />
75+
<arg value="${release-dir}/${build-release-tar-file}" />
76+
</exec>
77+
78+
<exec executable="gpg" output="${release-dir}/${build-release-tar-file}.sha256">
79+
<arg value="--print-md" />
80+
<arg value="SHA256" />
81+
<arg value="${release-dir}/${build-release-tar-file}" />
82+
</exec>
83+
84+
<exec executable="gpg" output="${release-dir}/${build-release-tar-file}.sha512">
85+
<arg value="--print-md" />
86+
<arg value="SHA512" />
87+
<arg value="${release-dir}/${build-release-tar-file}" />
88+
</exec>
7189
</target>
7290
</project>

webapp/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,6 @@
239239
<artifactId>curator-recipes</artifactId>
240240
</dependency>
241241

242-
<!-- AWS library -->
243-
<dependency>
244-
<groupId>org.apache.hadoop</groupId>
245-
<artifactId>hadoop-aws</artifactId>
246-
<version>${hadoop.version}</version>
247-
</dependency>
248-
249242
<dependency>
250243
<groupId>org.apache.hadoop</groupId>
251244
<artifactId>hadoop-common</artifactId>

webapp/src/main/java/org/apache/atlas/examples/QuickStartV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ private String[] getDSLQueries() {
641641
"DB",
642642
"DB where name=%22Reporting%22",
643643
"DB where name=%22encode_db_name%22",
644-
"Table where name=%2522sales_fact%2522",
644+
"Table where name=%22sales_fact%22",
645645
"DB where name=\"Reporting\"",
646646
"DB where DB.name=\"Reporting\"",
647647
"DB name = \"Reporting\"",

0 commit comments

Comments
 (0)