FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tutorials/java-ee-8-security-api/pom.xml at master · ws-java/tutorials · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ws-java
/
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
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
tutorials
/
java-ee-8-security-api
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
73 lines (66 loc) · 2.93 KB
Breadcrumbs
tutorials
/
java-ee-8-security-api
/
pom.xml
Copy path
File metadata and controls
73 lines (66 loc) · 2.93 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
<?
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.baeldung</
groupId
>
<
artifactId
>java-ee-8-security-api</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<
packaging
>pom</
packaging
>
<
properties
>
<
maven
.compiler.source>1.8</
maven
.compiler.source>
<
maven
.compiler.target>1.8</
maven
.compiler.target>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
defaultHttpPort
>9080</
defaultHttpPort
>
<
defaultHttpsPort
>9443</
defaultHttpsPort
>
<
javaee-version
>8.0</
javaee-version
>
<
liberty-maven-plugin
.version>2.3</
liberty-maven-plugin
.version>
<
openliberty-runtime
.version>18.0.0.1</
openliberty-runtime
.version>
<
h2-version
>1.4.197</
h2-version
>
</
properties
>
<
modules
>
<
module
>app-auth-basic-store-db</
module
>
<
module
>app-auth-form-store-ldap</
module
>
<
module
>app-auth-custom-form-store-custom</
module
>
<
module
>app-auth-custom-no-store</
module
>
</
modules
>
<
dependencies
>
<
dependency
>
<
groupId
>javax</
groupId
>
<
artifactId
>javaee-web-api</
artifactId
>
<
version
>
${javaee-version}
</
version
>
<
scope
>provided</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
artifactId
>maven-war-plugin</
artifactId
>
<
configuration
>
<
failOnMissingWebXml
>false</
failOnMissingWebXml
>
<
packagingExcludes
>pom.xml</
packagingExcludes
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>net.wasdev.wlp.maven.plugins</
groupId
>
<
artifactId
>liberty-maven-plugin</
artifactId
>
<
version
>
${liberty-maven-plugin.version}
</
version
>
<
configuration
>
<
install
>
<
runtimeUrl
>
https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/nightly/2018-05-25_1422/openliberty-all-20180525-1300.zip
</
runtimeUrl
>
</
install
>
<
looseApplication
>true</
looseApplication
>
<
installAppPackages
>project</
installAppPackages
>
<
configFile
>src/main/liberty/config/server.xml</
configFile
>
<
stripVersion
>true</
stripVersion
>
<
bootstrapProperties
>
<
default
.http.port>
${defaultHttpPort}
</
default
.http.port>
<
default
.https.port>
${defaultHttpsPort}
</
default
.https.port>
</
bootstrapProperties
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL