FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JS-Sorting-Algorithm/src/java/pom.xml at master · hustcc/JS-Sorting-Algorithm · GitHub
hustcc
/
JS-Sorting-Algorithm
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1.1k
Star
5.2k
Code
Issues
7
Pull requests
17
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
JS-Sorting-Algorithm
/
src
/
java
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (60 loc) · 2.29 KB
Breadcrumbs
JS-Sorting-Algorithm
/
src
/
java
/
pom.xml
Copy path
File metadata and controls
70 lines (60 loc) · 2.29 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
<?
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
>com.corning</
groupId
>
<
artifactId
>sort</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<
developers
>
<
developer
>
<
name
>CorningSun</
name
>
<
email
>corningsun@163.com</
email
>
<
url
>http://www.corningsun.com</
url
>
</
developer
>
</
developers
>
<
properties
>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
dependency
.version>LATEST</
dependency
.version>
</
properties
>
<
dependencies
>
<
dependency
>
<
groupId
>junit</
groupId
>
<
artifactId
>junit</
artifactId
>
<
version
>
${dependency.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.7.0</
version
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
version
>2.20.1</
version
>
<
configuration
>
<!--
跳过单元测试
-->
<!--
<skipTests>true</skipTests>
-->
<!--
跳过单元测试代码编译
-->
<!--
<skip>true</skip>
-->
<!--
包含与排除测试用例
-->
<!--
<includes>
-->
<!--
<include>**/*Tests.java</include>
-->
<!--
</includes>
-->
<!--
<excludes>
-->
<!--
<exclude>**/*ServiceTest.java</exclude>
-->
<!--
<exclude>**/TempDaoTest.java</exclude>
-->
<!--
</excludes>
-->
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL