FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WxJava/weixin-java-open/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
33k
Code
Issues
4
Pull requests
4
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-open
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
161 lines (153 loc) · 4.75 KB
Breadcrumbs
WxJava
/
weixin-java-open
/
pom.xml
Copy path
File metadata and controls
161 lines (153 loc) · 4.75 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<
project
xmlns
:
xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi
:
schemaLocation
=
"
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd
"
xmlns
=
"
http://maven.apache.org/POM/4.0.0
"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
parent
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>wx-java</
artifactId
>
<
version
>4.8.6.B</
version
>
</
parent
>
<
artifactId
>weixin-java-open</
artifactId
>
<
name
>WxJava - Open Java SDK</
name
>
<
description
>微信开放平台 Java SDK</
description
>
<
developers
>
<
developer
>
<
name
>007</
name
>
<
email
>007gzs@gmail.com</
email
>
<
url
>https://github.com/007gzs</
url
>
</
developer
>
</
developers
>
<
dependencies
>
<
dependency
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>weixin-java-common</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>weixin-java-mp</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.github.binarywang</
groupId
>
<
artifactId
>weixin-java-miniapp</
artifactId
>
<
version
>
${project.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.jodd</
groupId
>
<
artifactId
>jodd-http</
artifactId
>
<
scope
>provided</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>com.squareup.okhttp3</
groupId
>
<
artifactId
>okhttp</
artifactId
>
<
scope
>provided</
scope
>
</
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.testng</
groupId
>
<
artifactId
>testng</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>com.google.inject</
groupId
>
<
artifactId
>guice</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.eclipse.jetty</
groupId
>
<
artifactId
>jetty-server</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.eclipse.jetty</
groupId
>
<
artifactId
>jetty-servlet</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>joda-time</
groupId
>
<
artifactId
>joda-time</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>redis.clients</
groupId
>
<
artifactId
>jedis</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>ch.qos.logback</
groupId
>
<
artifactId
>logback-classic</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.projectlombok</
groupId
>
<
artifactId
>lombok</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.redisson</
groupId
>
<
artifactId
>redisson</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.data</
groupId
>
<
artifactId
>spring-data-redis</
artifactId
>
<
version
>
${spring-data-redis.version}
</
version
>
<
optional
>true</
optional
>
<
scope
>provided</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
configuration
>
<
suiteXmlFiles
>
<
suiteXmlFile
>src/test/resources/testng.xml</
suiteXmlFile
>
</
suiteXmlFiles
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
<
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