FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tutorials/java-lite/pom.xml at master · EasySpringBoot/tutorials · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EasySpringBoot
/
tutorials
Public
forked from
eugenp/tutorials
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
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
tutorials
/
java-lite
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
101 lines (91 loc) · 3.56 KB
Breadcrumbs
tutorials
/
java-lite
/
pom.xml
Copy path
File metadata and controls
101 lines (91 loc) · 3.56 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
<?
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
>org.baeldung</
groupId
>
<
artifactId
>java-lite</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<
name
>java-lite</
name
>
<
packaging
>war</
packaging
>
<
parent
>
<
groupId
>com.baeldung</
groupId
>
<
artifactId
>parent-modules</
artifactId
>
<
version
>1.0.0-SNAPSHOT</
version
>
</
parent
>
<
dependencies
>
<
dependency
>
<
groupId
>org.javalite</
groupId
>
<
artifactId
>activeweb</
artifactId
>
<
version
>
${activeweb.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>mysql</
groupId
>
<
artifactId
>mysql-connector-java</
artifactId
>
<
version
>
${mysql.connector.java.version}
</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.sun</
groupId
>
<
artifactId
>tools</
artifactId
>
<
version
>
${sun.tools.version}
</
version
>
<
scope
>system</
scope
>
<
systemPath
>
${java.home}
/../lib/tools.jar</
systemPath
>
</
dependency
>
<
dependency
>
<
groupId
>org.javalite</
groupId
>
<
artifactId
>activeweb-testing</
artifactId
>
<
version
>
${activeweb-testing.version}
</
version
>
<
scope
>test</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
resources
>
<
resource
>
<
directory
>src/main/webapp/WEB-INF</
directory
>
</
resource
>
</
resources
>
<
plugins
>
<
plugin
>
<
groupId
>org.eclipse.jetty</
groupId
>
<
artifactId
>jetty-maven-plugin</
artifactId
>
<
version
>
${jetty.maven.plugin.version}
</
version
>
<
configuration
>
<
systemProperties
>
<
systemProperty
>
<
name
>activejdbc.log</
name
>
<
value
></
value
>
</
systemProperty
>
<
systemProperty
>
<
name
>active_reload</
name
>
<
value
>true</
value
>
</
systemProperty
>
<
systemProperty
>
<
name
>activeweb.log.request</
name
>
<
value
>true</
value
>
</
systemProperty
>
</
systemProperties
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.javalite</
groupId
>
<
artifactId
>activejdbc-instrumentation</
artifactId
>
<
version
>
${activejdbc.version}
</
version
>
<
executions
>
<
execution
>
<
phase
>process-classes</
phase
>
<
goals
>
<
goal
>instrument</
goal
>
</
goals
>
</
execution
>
</
executions
>
</
plugin
>
</
plugins
>
</
build
>
<
properties
>
<
jetty
.maven.plugin.version>9.4.8.v20171121</
jetty
.maven.plugin.version>
<
activejdbc
.version>1.4.13</
activejdbc
.version>
<
activeweb
.version>1.15</
activeweb
.version>
<
mysql
.connector.java.version>5.1.45</
mysql
.connector.java.version>
<
sun
.tools.version>1.7.0</
sun
.tools.version>
<
activeweb-testing
.version>1.15</
activeweb-testing
.version>
</
properties
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL