-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathpom.xml
97 lines (93 loc) · 4.25 KB
/
pom.xml
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">
<parent>
<groupId>org.wso2.samples.is</groupId>
<artifactId>wso2is-identity-samples-microprofile</artifactId>
<version>4.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>microprofile-jwt</artifactId>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile</artifactId>
<scope>provided</scope>
<type>pom</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<configuration>
<assemblyArtifact>
<groupId>io.openliberty</groupId>
<artifactId>openliberty-runtime</artifactId>
<version>18.0.0.1</version>
<type>zip</type>
</assemblyArtifact>
<serverName>sample-liberty-server</serverName>
<configFile>${basedir}/src/main/liberty/config/server.xml</configFile>
<packageFile>${project.build.directory}/secure-wallet-service.jar</packageFile>
<include>runnable</include>
<looseApplication>false</looseApplication>
<installAppPackages>project</installAppPackages>
<bootstrapProperties>
<app.context.root>/</app.context.root>
<app.location>${project.artifactId}-${project.version}.war</app.location>
<default.http.port>8080</default.http.port>
<default.https.port>8443</default.https.port>
</bootstrapProperties>
</configuration>
<!--<executions>-->
<!--<execution>-->
<!--<id>install-server</id>-->
<!--<phase>prepare-package</phase>-->
<!--<goals>-->
<!--<goal>install-server</goal>-->
<!--<goal>create-server</goal>-->
<!--<goal>install-feature</goal>-->
<!--</goals>-->
<!--</execution>-->
<!--<execution>-->
<!--<id>package-server-with-apps</id>-->
<!--<phase>package</phase>-->
<!--<goals>-->
<!--<goal>install-apps</goal>-->
<!--<goal>package-server</goal>-->
<!--</goals>-->
<!--</execution>-->
<!--</executions>-->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>microprofile-jwt-sample-resources</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/resources/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>