Skip to content

Commit

Permalink
Refactor elasticjob-infra module
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Oct 14, 2023
1 parent 6a73322 commit 3d4f604
Show file tree
Hide file tree
Showing 96 changed files with 52 additions and 85 deletions.
2 changes: 1 addition & 1 deletion ecosystem/error-handler/spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-infra-common</artifactId>
<artifactId>elasticjob-infra</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion ecosystem/error-handler/type/general/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</dependency>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-infra-common</artifactId>
<artifactId>elasticjob-infra</artifactId>
<version>${project.parent.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion ecosystem/executor/kernel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dependency>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-infra-common</artifactId>
<artifactId>elasticjob-infra</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion ecosystem/tracing/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dependency>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-infra-common</artifactId>
<artifactId>elasticjob-infra</artifactId>
<version>${project.parent.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion engine/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dependency>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-infra-common</artifactId>
<artifactId>elasticjob-infra</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
Expand Down
75 changes: 0 additions & 75 deletions infra/common/pom.xml

This file was deleted.

50 changes: 46 additions & 4 deletions infra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,52 @@
<version>3.1.0-SNAPSHOT</version>
</parent>
<artifactId>elasticjob-infra</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>

<modules>
<module>common</module>
</modules>
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-api</artifactId>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
File renamed without changes.
2 changes: 1 addition & 1 deletion restful/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-infra-common</artifactId>
<artifactId>elasticjob-infra</artifactId>
<version>${project.parent.version}</version>
</dependency>

Expand Down

0 comments on commit 3d4f604

Please sign in to comment.