FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
APIJSON/APIJSON-Java-Server/APIJSONDemo/pom.xml at master · lys007/APIJSON · GitHub
lys007
/
APIJSON
Public
forked from
APIJSON/APIJSON
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
APIJSON
/
APIJSON-Java-Server
/
APIJSONDemo
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
97 lines (87 loc) · 2.75 KB
Breadcrumbs
APIJSON
/
APIJSON-Java-Server
/
APIJSONDemo
/
pom.xml
Copy path
File metadata and controls
executable file
·
97 lines (87 loc) · 2.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
<?
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.demo.server</
groupId
>
<
artifactId
>apijson-demo</
artifactId
>
<
version
>2.1.0-SNAPSHOT</
version
>
<
packaging
>jar</
packaging
>
<
name
>APIJSONDemo</
name
>
<
description
>Demo project for APIJSON Server</
description
>
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>1.4.1.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
>
<
dependency
>
<
groupId
>mysql</
groupId
>
<
artifactId
>mysql-connector-java</
artifactId
>
<
version
>5.1.40</
version
>
</
dependency
>
<
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
>
<
dependency
>
<
groupId
>com.alibaba</
groupId
>
<
artifactId
>fastjson</
artifactId
>
<
version
>1.2.21</
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
>
</
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