Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
git test
Jpress
Commits
9b82e42d
Commit
9b82e42d
authored
6 years ago
by
fuhai
Browse files
Options
Download
Plain Diff
!64 升级依赖,解决冲突
Merge pull request !64 from 朱哲/master
parents
edb54e9f
894af276
master
v3
v4.0
v4.2.1
v4.2.0
v4.1.5
v4.1.4
v4.1.3
v4.1.2
v4.1.1
v4.1.0
v4.0.9
v4.0.8
v4.0.7
v4.0.6
v4.0.5
v4.0.4
v4.0.3
v4.0.2
v4.0.1
v4.0.0
v4.0.0-rc.2
v4.0.0-rc.1
v3.3.0
v3.2.5
v3.2.4
v3.2.3
v3.2.2
v3.2.1
v3.2.0
v3.1.1
v3.1.0
v3.0.6
v3.0.5
v3.0.4
v3.0.3
v3.0.2
v3.0.1
v3.0.0
v3.0.0-rc.3
v3.0.0-rc.2
v3.0.0-beta.2
v3.0.0-beta.1
v3.0.0-alpha.2
v3.0.0-alpha.1
v3.0-rc.1
v2.0.8
v2.0.7
v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
v2.0.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
jpress-commons/pom.xml
+10
-0
jpress-commons/pom.xml
pom.xml
+27
-1
pom.xml
with
37 additions
and
1 deletion
+37
-1
jpress-commons/pom.xml
+
10
-
0
View file @
9b82e42d
...
...
@@ -30,6 +30,16 @@
<artifactId>
aliyun-sdk-oss
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.httpcomponents
</groupId>
<artifactId>
httpclient
</artifactId>
</dependency>
<dependency>
<groupId>
commons-codec
</groupId>
<artifactId>
commons-codec
</artifactId>
</dependency>
<dependency>
<groupId>
javax.mail
</groupId>
<artifactId>
javax.mail-api
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
pom.xml
+
27
-
1
View file @
9b82e42d
...
...
@@ -38,7 +38,9 @@
<javax.mail.version>
1.6.2
</javax.mail.version>
<commons-io.version>
2.6
</commons-io.version>
<commonmark.version>
0.12.1
</commonmark.version>
<aliyunoss.version>
3.4.0
</aliyunoss.version>
<aliyunoss.version>
3.4.2
</aliyunoss.version>
<httpclient.version>
4.5.3
</httpclient.version>
<commons-codec.version>
1.10
</commons-codec.version>
<maven.compiler.source>
1.8
</maven.compiler.source>
<maven.compiler.target>
1.8
</maven.compiler.target>
...
...
@@ -151,6 +153,30 @@
<groupId>
com.aliyun.oss
</groupId>
<artifactId>
aliyun-sdk-oss
</artifactId>
<version>
${aliyunoss.version}
</version>
<exclusions>
<exclusion>
<groupId>
org.apache.httpcomponents
</groupId>
<artifactId>
httpclient
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.apache.httpcomponents
</groupId>
<artifactId>
httpclient
</artifactId>
<version>
${httpclient.version}
</version>
<exclusions>
<exclusion>
<groupId>
commons-codec
</groupId>
<artifactId>
commons-codec
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
commons-codec
</groupId>
<artifactId>
commons-codec
</artifactId>
<version>
${commons-codec.version}
</version>
</dependency>
</dependencies>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help