Skip to content

Commit

Permalink
update pom
Browse files Browse the repository at this point in the history
  • Loading branch information
laglangyue committed Sep 6, 2022
1 parent 70fb0b8 commit aa40c75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
import java.util.stream.Stream;

/**
* This class is the base class of SparkEnvironment test. The before method will create a Spark master, and after method will close the Spark master. You can use {@link SparkContainer#executeSeaTunnelSparkJob} to submit a seatunnel conf and a seatunnel spark job.
* This class is the base class of SparkEnvironment test. The before method will create a Spark master, and after method will close the Spark master.
* You can use {@link SparkContainer#executeSeaTunnelSparkJob} to submit a seatunnel conf and a seatunnel spark job.
*/
public abstract class SparkContainer {

Expand All @@ -56,7 +57,7 @@ public abstract class SparkContainer {
private static final String PLUGIN_MAPPING_FILE = "plugin-mapping.properties";
private static final String SEATUNNEL_HOME = "/tmp/spark/seatunnel";
private static final String SEATUNNEL_BIN = Paths.get(SEATUNNEL_HOME, "bin").toString();
protected static final String SPARK_JAR_PATH = Paths.get(SEATUNNEL_HOME, "lib", SEATUNNEL_SPARK_JAR).toString();
private static final String SPARK_JAR_PATH = Paths.get(SEATUNNEL_HOME, "lib", SEATUNNEL_SPARK_JAR).toString();
private static final String CONNECTORS_PATH = Paths.get(SEATUNNEL_HOME, "connectors").toString();

private static final int WAIT_SPARK_JOB_SUBMIT = 5000;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit aa40c75

Please sign in to comment.