-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpom.xml
More file actions
68 lines (63 loc) · 1.84 KB
/
pom.xml
File metadata and controls
68 lines (63 loc) · 1.84 KB
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
<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>br.org.soujava.rio</groupId>
<artifactId>Servlet4-sample</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<name>Sample-Servlet4</name>
<organization>
<name>SouJava { Rio }</name>
<url>http://soujava-rio.github.io</url>
</organization>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
<version.payara>1.0.1</version.payara>
</properties>
<developers>
<developer>
<name>Daniel Dias</name>
<email>daniel.dias@soujava.org.br</email>
<organization>SouJava { Rio }</organization>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>8.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>Servlet4-sample</finalName>
<plugins>
<plugin>
<groupId>fish.payara.maven.plugins</groupId>
<artifactId>payara-micro-maven-plugin</artifactId>
<version>${version.payara}</version>
<executions>
<execution>
<goals>
<goal>bundle</goal>
<goal>start</goal>
</goals>
</execution>
</executions>
<configuration>
<useUberJar>true</useUberJar>
<deployWar>false</deployWar>
<daemon>false</daemon>
<payaraVersion>5.0.0.Alpha3</payaraVersion>
<artifactItem>
<groupId>fish.payara.extras</groupId>
<artifactId>payara-micro</artifactId>
<payaraVersion>5.183</payaraVersion>
</artifactItem>
</configuration>
</plugin>
</plugins>
</build>
</project>