Skip to content

Commit 62b08d5

Browse files
committed
修改odps reader writer 对bcprov-jdk15on的依赖
1 parent bf33196 commit 62b08d5

File tree

6 files changed

+28
-1
lines changed

6 files changed

+28
-1
lines changed

odpsreader/pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@
3636
<artifactId>guava</artifactId>
3737
<version>16.0.1</version>
3838
</dependency>
39-
39+
<dependency>
40+
<groupId>org.bouncycastle</groupId>
41+
<artifactId>bcprov-jdk15on</artifactId>
42+
<version>1.52</version>
43+
<scope>system</scope>
44+
<systemPath>${basedir}/src/main/libs/bcprov-jdk15on-1.52.jar</systemPath>
45+
</dependency>
4046
<dependency>
4147
<groupId>com.aliyun.odps</groupId>
4248
<artifactId>odps-sdk-core</artifactId>

odpsreader/src/main/assembly/package.xml

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@
2323
</includes>
2424
<outputDirectory>plugin/reader/odpsreader</outputDirectory>
2525
</fileSet>
26+
<fileSet>
27+
<directory>src/main/libs</directory>
28+
<includes>
29+
<include>*.*</include>
30+
</includes>
31+
<outputDirectory>plugin/reader/odpsreader/libs</outputDirectory>
32+
</fileSet>
2633
</fileSets>
2734

2835
<dependencySets>
2.77 MB
Binary file not shown.

odpswriter/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
<groupId>ch.qos.logback</groupId>
3131
<artifactId>logback-classic</artifactId>
3232
</dependency>
33+
<dependency>
34+
<groupId>org.bouncycastle</groupId>
35+
<artifactId>bcprov-jdk15on</artifactId>
36+
<version>1.52</version>
37+
<scope>system</scope>
38+
<systemPath>${basedir}/src/main/libs/bcprov-jdk15on-1.52.jar</systemPath>
39+
</dependency>
3340
<dependency>
3441
<groupId>com.aliyun.odps</groupId>
3542
<artifactId>odps-sdk-core</artifactId>

odpswriter/src/main/assembly/package.xml

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@
2323
</includes>
2424
<outputDirectory>plugin/writer/odpswriter</outputDirectory>
2525
</fileSet>
26+
<fileSet>
27+
<directory>src/main/libs</directory>
28+
<includes>
29+
<include>*.*</include>
30+
</includes>
31+
<outputDirectory>plugin/reader/odpswriter/libs</outputDirectory>
32+
</fileSet>
2633
</fileSets>
2734

2835
<dependencySets>
2.77 MB
Binary file not shown.

0 commit comments

Comments
 (0)