|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>br.org.soujava.rio</groupId> |
| 5 | + <artifactId>MVC-FORM</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <name>MVC-FORM Maven Webapp</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + |
| 11 | + <organization> |
| 12 | + <name>SouJava { Rio }</name> |
| 13 | + <url>http://soujava-rio.github.io</url> |
| 14 | + </organization> |
| 15 | + |
| 16 | + <properties> |
| 17 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 18 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 19 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 20 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 21 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 22 | + <version.payara>1.0.1</version.payara> |
| 23 | + <version.swarm>2017.12.1</version.swarm> |
| 24 | + <ozark.version>1.0.0-SNAPSHOT</ozark.version> |
| 25 | + <ozark.jersey>1.0.0-SNAPSHOT</ozark.jersey> |
| 26 | + <ozark.resteasy>1.0.0-SNAPSHOT</ozark.resteasy> |
| 27 | + <mvc.version>1.0-SNAPSHOT</mvc.version> |
| 28 | + </properties> |
| 29 | + |
| 30 | + <developers> |
| 31 | + <developer> |
| 32 | + <name>Daniel Dias</name> |
| 33 | + <email>daniel.dias@soujava.org.br</email> |
| 34 | + <organization>SouJava { Rio }</organization> |
| 35 | + </developer> |
| 36 | + </developers> |
| 37 | + |
| 38 | + <dependencyManagement> |
| 39 | + <dependencies> |
| 40 | + <dependency> |
| 41 | + <groupId>org.wildfly.swarm</groupId> |
| 42 | + <artifactId>bom-all</artifactId> |
| 43 | + <version>${version.swarm}</version> |
| 44 | + <scope>import</scope> |
| 45 | + <type>pom</type> |
| 46 | + </dependency> |
| 47 | + </dependencies> |
| 48 | + </dependencyManagement> |
| 49 | + |
| 50 | + <dependencies> |
| 51 | + <dependency> |
| 52 | + <groupId>javax.mvc</groupId> |
| 53 | + <artifactId>javax.mvc-api</artifactId> |
| 54 | + <version>${mvc.version}</version> |
| 55 | + </dependency> |
| 56 | + |
| 57 | + <dependency> |
| 58 | + <groupId>org.mvc-spec.ozark</groupId> |
| 59 | + <artifactId>ozark-core</artifactId> |
| 60 | + <version>${ozark.version}</version> |
| 61 | + </dependency> |
| 62 | + |
| 63 | + <dependency> |
| 64 | + <groupId>org.eclipse.microprofile</groupId> |
| 65 | + <artifactId>microprofile</artifactId> |
| 66 | + <version>2.0.1</version> |
| 67 | + <type>pom</type> |
| 68 | + <scope>provided</scope> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <dependency> |
| 72 | + <groupId>org.projectlombok</groupId> |
| 73 | + <artifactId>lombok</artifactId> |
| 74 | + <version>1.16.14</version> |
| 75 | + <scope>provided</scope> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + </dependencies> |
| 79 | + |
| 80 | + <build> |
| 81 | + <finalName>MVC-Post-Redirect-Get</finalName> |
| 82 | + </build> |
| 83 | + |
| 84 | + <profiles> |
| 85 | + <profile> |
| 86 | + <id>payara</id> |
| 87 | + <build> |
| 88 | + <plugins> |
| 89 | + <plugin> |
| 90 | + <groupId>fish.payara.maven.plugins</groupId> |
| 91 | + <artifactId>payara-micro-maven-plugin</artifactId> |
| 92 | + <version>${version.payara}</version> |
| 93 | + <executions> |
| 94 | + <execution> |
| 95 | + <goals> |
| 96 | + <goal>bundle</goal> |
| 97 | + <goal>start</goal> |
| 98 | + </goals> |
| 99 | + </execution> |
| 100 | + </executions> |
| 101 | + <configuration> |
| 102 | + <useUberJar>true</useUberJar> |
| 103 | + <deployWar>false</deployWar> |
| 104 | + <daemon>false</daemon> |
| 105 | + <payaraVersion>5.183</payaraVersion> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + </plugins> |
| 109 | + </build> |
| 110 | + <dependencies> |
| 111 | + <dependency> |
| 112 | + <groupId>org.mvc-spec.ozark</groupId> |
| 113 | + <artifactId>ozark-jersey</artifactId> |
| 114 | + <version>${ozark.jersey}</version> |
| 115 | + </dependency> |
| 116 | + </dependencies> |
| 117 | + </profile> |
| 118 | + |
| 119 | + <profile> |
| 120 | + <id>wildfly</id> |
| 121 | + <build> |
| 122 | + <plugins> |
| 123 | + <plugin> |
| 124 | + <groupId>org.wildfly.swarm</groupId> |
| 125 | + <artifactId>wildfly-swarm-plugin</artifactId> |
| 126 | + <version>${version.swarm}</version> |
| 127 | + <executions> |
| 128 | + <execution> |
| 129 | + <goals> |
| 130 | + <goal>package</goal> |
| 131 | + </goals> |
| 132 | + </execution> |
| 133 | + </executions> |
| 134 | + </plugin> |
| 135 | + </plugins> |
| 136 | + </build> |
| 137 | + <dependencies> |
| 138 | + <dependency> |
| 139 | + <groupId>org.mvc-spec.ozark</groupId> |
| 140 | + <artifactId>ozark-resteasy</artifactId> |
| 141 | + <version>${ozark.resteasy}</version> |
| 142 | + </dependency> |
| 143 | + </dependencies> |
| 144 | + </profile> |
| 145 | + </profiles> |
| 146 | + |
| 147 | + <repositories> |
| 148 | + <repository> |
| 149 | + <id>snapshots-repo</id> |
| 150 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 151 | + <releases> |
| 152 | + <enabled>false</enabled> |
| 153 | + </releases> |
| 154 | + <snapshots> |
| 155 | + <enabled>true</enabled> |
| 156 | + </snapshots> |
| 157 | + </repository> |
| 158 | + </repositories> |
| 159 | +</project> |
0 commit comments