Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .github/workflows/main.yml

This file was deleted.

1 change: 0 additions & 1 deletion build-project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ set -e

HDFS_VERSION=$1

mvn install:install-file -pl smart-tests
mvn clean install -Pdist,web-ui,hadoop-"${HDFS_VERSION}" -DskipTests
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@
<name>SmartData Project</name>
<packaging>pom</packaging>

<repositories>
<repository>
<id>maven-arenadata-snapshot</id>
<url>https://nexus.adsw.io/repository/maven-arenadata-snapshot/</url>
</repository>
<repository>
<id>maven-arenadata-release</id>
<url>https://nexus.adsw.io/repository/maven-arenadata-release/</url>
</repository>
</repositories>

<modules>
<module>smart-frontend</module>
<module>smart-common</module>
Expand Down
Binary file not shown.
33 changes: 1 addition & 32 deletions smart-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,11 @@
<openapi.codegen.package.base>org.smartdata.client.generated</openapi.codegen.package.base>
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.arenadata</groupId>
<artifactId>java-test-common-jdk8</artifactId>
<version>${java-test-common.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.arenadata</groupId>
<artifactId>java-test-common-jdk8</artifactId>
<version>${java-test-common.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
Expand Down Expand Up @@ -176,27 +166,6 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<groupId>io.arenadata</groupId>
<artifactId>java-test-common-jdk8</artifactId>
<packaging>jar</packaging>
<file>${basedir}/lib/java-test-common-jdk8-${java-test-common.version}.jar</file>
<generatePom>false</generatePom>
</configuration>
<executions>
<execution>
<id>install-jar-lib</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>initialize</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down
6 changes: 2 additions & 4 deletions supports/tools/docker/multihost/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,8 @@ services:
container_name: hive-server2
hostname: hive-server2.demo
depends_on:
hive-metastore:
condition: service_started
hadoop-namenode:
condition: service_healthy
- hive-metastore
- hadoop-namenode
environment:
SERVICE_NAME: hiveserver2
IS_RESUME: true
Expand Down