FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
APIJSON/APIJSON-Java-Server/APIJSONBoot/pom.xml at master · xi1314/APIJSON · GitHub
xi1314
/
APIJSON
Public
forked from
APIJSON/APIJSON
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
APIJSON
/
APIJSON-Java-Server
/
APIJSONBoot
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
134 lines (121 loc) · 4.01 KB
Breadcrumbs
APIJSON
/
APIJSON-Java-Server
/
APIJSONBoot
/
pom.xml
Copy path
File metadata and controls
executable file
·
134 lines (121 loc) · 4.01 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
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<
project
xmlns
=
"
http://maven.apache.org/POM/4.0.0
"
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
"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
groupId
>apijson.boot</
groupId
>
<
artifactId
>apijson-boot</
artifactId
>
<
version
>4.1.0</
version
>
<
packaging
>jar</
packaging
>
<
name
>APIJSONBoot</
name
>
<
description
>Demo project for APIJSON Server based on SpringBoot</
description
>
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>1.4.1.RELEASE</
version
>
<!--
改成 2.1.9 直接报错,找不到 mysql-connector-java 等 3 个驱动包 <version>2.1.9.RELEASE</version>
-->
<
relativePath
/>
<!--
lookup parent from repository
-->
</
parent
>
<
properties
>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
project
.reporting.outputEncoding>UTF-8</
project
.reporting.outputEncoding>
<
java
.version>1.8</
java
.version>
</
properties
>
<
dependencies
>
<!--
APIJSONORM 需要用的 JSON 封装/解析库,1.2.24 以上
-->
<
dependency
>
<
groupId
>com.alibaba</
groupId
>
<
artifactId
>fastjson</
artifactId
>
<
version
>1.2.61</
version
>
</
dependency
>
<!--
APIJSONBoot 需要用的 Spring 框架,1.4.1 以上
-->
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-test</
artifactId
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-web</
artifactId
>
</
dependency
>
<!--
APIJSONBoot 需要用的数据库 JDBC 驱动
-->
<
dependency
>
<
groupId
>mysql</
groupId
>
<
artifactId
>mysql-connector-java</
artifactId
>
<
version
>8.0.11</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.postgresql</
groupId
>
<
artifactId
>postgresql</
artifactId
>
<
version
>42.2.5</
version
>
</
dependency
>
<
dependency
>
<
groupId
>net.sourceforge.jtds</
groupId
>
<
artifactId
>jtds</
artifactId
>
<
version
>1.3.1</
version
>
</
dependency
>
<!--
https://mvnrepository.com/artifact/com.ibm.db2/jcc
-->
<
dependency
>
<
groupId
>com.ibm.db2</
groupId
>
<
artifactId
>jcc</
artifactId
>
<
version
>11.5.0.0</
version
>
</
dependency
>
<!--
没找到合适且稳定的 Oracle 的 JDBC Maven 依赖,已在 libs 目录放了对应的 jar 包来替代
-->
<!--
可使用 libs 目录的 apijson-framework.jar 和 apijson-orm.jar 本地 jar 包依赖来替代,两种方式二选一
-->
<
dependency
>
<
groupId
>com.github.APIJSON</
groupId
>
<
artifactId
>apijson-framework</
artifactId
>
<
version
>LATEST</
version
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-maven-plugin</
artifactId
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
<!--
Allow access to Spring milestones and snapshots
-->
<!--
(you don't need this if you are using anything after 0.5.0.RELEASE)
-->
<
repositories
>
<
repository
>
<
id
>spring-snapshots</
id
>
<
url
>http://repo.spring.io/snapshot</
url
>
<
snapshots
>
<
enabled
>true</
enabled
>
</
snapshots
>
</
repository
>
<
repository
>
<
id
>spring-milestones</
id
>
<
url
>http://repo.spring.io/milestone</
url
>
<
snapshots
>
<
enabled
>true</
enabled
>
</
snapshots
>
</
repository
>
<
repository
>
<
id
>jitpack.io</
id
>
<
url
>https://jitpack.io</
url
>
</
repository
>
</
repositories
>
<
pluginRepositories
>
<
pluginRepository
>
<
id
>spring-snapshots</
id
>
<
url
>http://repo.spring.io/snapshot</
url
>
</
pluginRepository
>
<
pluginRepository
>
<
id
>spring-milestones</
id
>
<
url
>http://repo.spring.io/milestone</
url
>
</
pluginRepository
>
</
pluginRepositories
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL