Skip to content

Commit

Permalink
Merge pull request #292 from peacewong/master
Browse files Browse the repository at this point in the history
to remove the useless dependencies and modify the suffix of the shell script to .sh
  • Loading branch information
chaogefeng authored Feb 11, 2020
2 parents 66f1c15 + 2446123 commit 2c52100
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static String getOpenFileTypeByFileName(String path) throws WorkSpaceExce
|| path.endsWith(".py")
|| path.endsWith(".mlsql")
|| path.endsWith(".jdbc")
|| path.endsWith(".shell")
|| path.endsWith(".sh")
) {
return "script";
} else if (path.endsWith(".dolphin")) {
Expand Down
11 changes: 1 addition & 10 deletions ujes/definedEngines/shell/engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,11 @@
<artifactId>linkis-ujes-engine</artifactId>
<version>${linkis.version}</version>
</dependency>
<dependency>
<groupId>com.webank.wedatasphere.linkis</groupId>
<artifactId>linkis-common</artifactId>
<version>${linkis.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
<version>${spring.eureka.version}</version>
</dependency>
<dependency>
<groupId>com.webank.wedatasphere.linkis</groupId>
<artifactId>linkis-cloudRPC</artifactId>
<version>${linkis.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.webank.wedatasphere.linkis</groupId>
Expand Down
6 changes: 6 additions & 0 deletions ujes/definedEngines/shell/enginemanager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
<artifactId>linkis-shell-engine</artifactId>
<version>${linkis.version}</version>
</dependency>
<dependency>
<groupId>com.webank.wedatasphere.linkis</groupId>
<artifactId>linkis-cloudRPC</artifactId>
<version>${linkis.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@
<unpack>false</unpack>
<useStrictFiltering>true</useStrictFiltering>
<useTransitiveFiltering>true</useTransitiveFiltering>
<excludes>
<exclude>org.apache.httpcomponents:httpclient:jar</exclude>
<exclude>org.apache.httpcomponents:httpcore:jar</exclude>
</excludes>
</dependencySet>
</dependencySets>

Expand Down

0 comments on commit 2c52100

Please sign in to comment.