FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WxJava/weixin-java-pay/pom.xml at develop · binarywang/WxJava · GitHub
binarywang
/
WxJava
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
9.1k
Star
33.1k
Code
Issues
4
Pull requests
5
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
WxJava
/
weixin-java-pay
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
129 lines (120 loc) · 3.84 KB
Breadcrumbs
WxJava
/
weixin-java-pay
/
pom.xml
Copy path
File metadata and controls
129 lines (120 loc) · 3.84 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<
project
xmlns
:
xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xmlns
=
"
http://maven.apache.org/POM/4.0.0
"
xsi
:
schemaLocation
=
"
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd
"
>
<
parent
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>wx-java</
artifactId
>
<
version
>4.8.6.B</
version
>
</
parent
>
<
modelVersion
>4.0.0</
modelVersion
>
<
artifactId
>weixin-java-pay</
artifactId
>
<
name
>WxJava - PAY Java SDK</
name
>
<
description
>微信支付 Java SDK</
description
>
<
dependencies
>
<
dependency
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>weixin-java-common</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>qrcode-utils</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.jodd</
groupId
>
<
artifactId
>jodd-http</
artifactId
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.jodd</
groupId
>
<
artifactId
>jodd-util</
artifactId
>
<
version
>6.1.0</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.httpcomponents</
groupId
>
<
artifactId
>httpclient</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.httpcomponents</
groupId
>
<
artifactId
>httpmime</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.httpcomponents.client5</
groupId
>
<
artifactId
>httpclient5</
artifactId
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.apache.commons</
groupId
>
<
artifactId
>commons-lang3</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.bouncycastle</
groupId
>
<
artifactId
>bcpkix-jdk18on</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>ch.qos.logback</
groupId
>
<
artifactId
>logback-classic</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.testng</
groupId
>
<
artifactId
>testng</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.assertj</
groupId
>
<
artifactId
>assertj-guava</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.inject</
groupId
>
<
artifactId
>guice</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.projectlombok</
groupId
>
<
artifactId
>lombok</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.code.gson</
groupId
>
<
artifactId
>gson</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>javax.servlet</
groupId
>
<
artifactId
>javax.servlet-api</
artifactId
>
<
version
>4.0.1</
version
>
<
optional
>true</
optional
>
<
scope
>provided</
scope
>
</
dependency
>
</
dependencies
>
<
profiles
>
<
profile
>
<
id
>native-image</
id
>
<
activation
>
<
activeByDefault
>false</
activeByDefault
>
</
activation
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.5.1</
version
>
<
configuration
>
<
annotationProcessors
>
com.github.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
</
annotationProcessors
>
<
annotationProcessorPaths
>
<
path
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>weixin-graal</
artifactId
>
<
version
>
${project.version}
</
version
>
</
path
>
</
annotationProcessorPaths
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
profile
>
</
profiles
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL