Commit 66003355 by Sarath Subramanian Committed by Madhan Neethiraj

ATLAS-458: fix project organization for ATLAS build tools

parent b688f80e
......@@ -32,7 +32,6 @@
<properties>
<falcon.version>0.8</falcon.version>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
......
......@@ -33,7 +33,6 @@
<properties>
<hive.version>1.2.1</hive.version>
<calcite.version>0.9.2-incubating</calcite.version>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
......
......@@ -32,7 +32,6 @@
<properties>
<sqoop.version>1.4.6.2.3.99.0-195</sqoop.version>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
......
......@@ -32,7 +32,6 @@
<properties>
<storm.version>1.0.0</storm.version>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
......
<?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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.atlas</groupId>
<artifactId>atlas-buildtools</artifactId>
<name>Apache Atlas Server Build Tools</name>
<description>Apache Atlas Build Tools like Checkstyle</description>
<version>0.8-incubating-SNAPSHOT</version>
<packaging>jar</packaging>
</project>
......@@ -29,10 +29,6 @@
<name>Apache Atlas Common</name>
<packaging>jar</packaging>
<properties>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
......
......@@ -29,9 +29,6 @@
<description>Apache Atlas Graph Database Projects</description>
<name>Apache Atlas Graph Database Projects</name>
<packaging>pom</packaging>
<properties>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<modules>
<module>api</module>
......
......@@ -29,10 +29,6 @@
<name>Apache Atlas Integration</name>
<packaging>jar</packaging>
<properties>
<checkstyle.failOnViolation>false</checkstyle.failOnViolation>
</properties>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
......
......@@ -29,10 +29,6 @@
<name>Apache Atlas Notification</name>
<packaging>jar</packaging>
<properties>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.atlas</groupId>
......
......@@ -29,10 +29,6 @@
<name>Apache Atlas Plugin Classloader</name>
<packaging>jar</packaging>
<properties>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
......
......@@ -579,6 +579,7 @@
<module>addons/storm-bridge</module>
<module>distro</module>
<module>build-tools</module>
</modules>
<repositories>
......@@ -1241,6 +1242,12 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.atlas</groupId>
<artifactId>atlas-buildtools</artifactId>
<version>${project.version}</version>
</dependency>
<!-- use titan 0.5.4 by default -->
<dependency>
<groupId>org.apache.atlas</groupId>
......@@ -1249,7 +1256,7 @@
<type>pom</type>
<!-- exclusions should be added here for all of the non-titan0 implementations -->
<scope>test</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.apache.atlas</groupId>
......@@ -1888,6 +1895,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.atlas</groupId>
<artifactId>atlas-buildtools</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>checkstyle-check</id>
......@@ -1897,11 +1911,8 @@
<phase>verify</phase>
<configuration>
<skip>${skipCheck}</skip>
<consoleOutput>true</consoleOutput>
<consoleOutput>false</consoleOutput>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<configLocation>src/build/checkstyle.xml</configLocation>
<headerLocation>src/build/checkstyle-java-header.txt</headerLocation>
<suppressionsLocation>src/build/checkstyle-suppressions.xml</suppressionsLocation>
<suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression>
<failOnViolation>${checkstyle.failOnViolation}</failOnViolation>
</configuration>
......
......@@ -9,9 +9,14 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ALL CHANGES:
ATLAS-458 fix project organization for ATLAS build tools (sarath.kum4r@gmail.com via mneethiraj)
ATLAS-1322 fix dereference null return value (sarath.kum4r@gmail.com via mneethiraj)
ATLAS-1292 Integration test fixes caused by recent bootstrap changes (apoorvnaik via mneethiraj)
ATLAS-1319 fix converters between v1 and v2 to handle struct type attributes (mneethiraj)
ATLAS-1324 Fix SecureEmbeddedServerTest.testServerConfiguredUsingCredentialProvider UT failure(ayubkhan via svimal2106)
ATLAS-1316 V2 API webapp tests are failing (ayubkhan via svimal2106)
ATLAS-1315 Fix webapp Integration tests (ayubkhan,apoorvnaik via svimal2106)
ATLAS-1314 update typedefs with addition of 'options' attribute (mneethiraj)
ATLAS-1313 Tests SSLAndKerberosTest.testService and SSLTest.testService are failing (ayubkhan via svimal2106)
ATLAS-1116 Performance monitoring of backend methods in API requests (shwethags)
ATLAS-1310 attempt LDAP authentication only when enabled (mneethiraj)
......
......@@ -30,10 +30,6 @@
<name>Shaded version of Apache hbase client</name>
<packaging>jar</packaging>
<properties>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.hbase</groupId>
......
......@@ -30,10 +30,6 @@
<name>Shaded version of Apache hbase server</name>
<packaging>jar</packaging>
<properties>
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.hbase</groupId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment