FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaUnitTestingDemo/pom.xml at master · Minimi09/JavaUnitTestingDemo · GitHub
Minimi09
/
JavaUnitTestingDemo
Public
forked from
IngJavierR/JavaUnitTestingDemo
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
JavaUnitTestingDemo
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
93 lines (85 loc) · 2.69 KB
Breadcrumbs
JavaUnitTestingDemo
/
pom.xml
Copy path
File metadata and controls
93 lines (85 loc) · 2.69 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
<?
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.howtoprogram</
groupId
>
<
artifactId
>junit5-maven-example</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<
packaging
>jar</
packaging
>
<
properties
>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
java
.version>1.8</
java
.version>
<
junit
.version>4.12</
junit
.version>
<
junit
.jupiter.version>5.0.0</
junit
.jupiter.version>
<
junit
.vintage.version>
${junit.version}
.0</
junit
.vintage.version>
<
junit
.jupiter.version>5.0.0</
junit
.jupiter.version>
<
junit
.platform.version>1.0.0</
junit
.platform.version>
</
properties
>
<
build
>
<
plugins
>
<
plugin
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.1</
version
>
<
configuration
>
<
source
>
${java.version}
</
source
>
<
target
>
${java.version}
</
target
>
</
configuration
>
</
plugin
>
<
plugin
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
version
>2.19</
version
>
<
dependencies
>
<
dependency
>
<
groupId
>org.junit.platform</
groupId
>
<
artifactId
>junit-platform-surefire-provider</
artifactId
>
<
version
>
${junit.platform.version}
</
version
>
</
dependency
>
</
dependencies
>
</
plugin
>
</
plugins
>
</
build
>
<
dependencies
>
<
dependency
>
<
groupId
>org.junit.jupiter</
groupId
>
<
artifactId
>junit-jupiter-engine</
artifactId
>
<
version
>
${junit.jupiter.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
<!--
To run tests on IDE such as Eclipse, Intellij
-->
<
dependency
>
<
groupId
>junit</
groupId
>
<
artifactId
>junit</
artifactId
>
<
version
>
${junit.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.junit.platform</
groupId
>
<
artifactId
>junit-platform-runner</
artifactId
>
<
version
>
${junit.platform.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.junit.vintage</
groupId
>
<
artifactId
>junit-vintage-engine</
artifactId
>
<
version
>
${junit.vintage.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.mockito</
groupId
>
<
artifactId
>mockito-all</
artifactId
>
<
version
>1.9.5</
version
>
</
dependency
>
<
dependency
>
<
groupId
>io.reactivex.rxjava2</
groupId
>
<
artifactId
>rxjava</
artifactId
>
<
version
>2.1.13</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.testng</
groupId
>
<
artifactId
>testng</
artifactId
>
<
version
>6.14.3</
version
>
<
scope
>compile</
scope
>
</
dependency
>
</
dependencies
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL