Skip to content

Commit

Permalink
Replace SDK with maven (#103)
Browse files Browse the repository at this point in the history
chore: update pom.xml
  • Loading branch information
zhanyeye committed Jan 29, 2022
1 parent ac8c6b0 commit 6bcef93
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,18 @@
<version>2.9.7</version>
</dependency>

<!-- 钉钉SDK -->
<!-- 钉钉旧版服务端SDK -->
<dependency>
<groupId>com.dingtalk.open</groupId>
<artifactId>taobao-sdk-java-auto</artifactId>
<version>2019.12.05</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/taobao-sdk-java-auto.jar</systemPath>
<groupId>com.aliyun</groupId>
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
<version>2.0.0</version>
</dependency>

<!-- 钉钉ISV -->
<!-- 钉钉新版服务端SDK -->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>dingtalk</artifactId>
<version>1.0.58</version>
<version>1.2.8</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
Expand Down Expand Up @@ -166,18 +164,13 @@
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>


</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

1 comment on commit 6bcef93

@zhanyeye
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

使用 git gc 清理之前使用的 sdk jar 包
https://www.bbsmax.com/A/qVde4gx15P/

Please sign in to comment.