Skip to content

Commit

Permalink
Merge pull request #474 from jfdenise/stability-test
Browse files Browse the repository at this point in the history
Test app for stability testing
  • Loading branch information
jfdenise authored Apr 25, 2024
2 parents 4a65944 + a516e07 commit 5ec07d5
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions test/test-app-stability-preview/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag. See the copyright.txt in the
distribution for a full listing of individual contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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.wildfly.s2i</groupId>
<version>1.0.0.Final</version>
<artifactId>fat-s2i-server-default-config</artifactId>
<packaging>pom</packaging>
<name>Provision a default config for fat server</name>

<description>Provision a default config for fat server</description>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<version.wildfly>32.0.0.Final</version.wildfly>
<version.wildfly.cloud.galleon.pack>7.0.0.Final</version.wildfly.cloud.galleon.pack>
<version.wildfly.plugin>5.0.0.Final</version.wildfly.plugin>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>${version.wildfly.plugin}</version>
<executions>
<execution>
<id>provision default config</id>
<goals>
<goal>provision</goal>
</goals>
<phase>compile</phase>
<configuration>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.wildfly}</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.wildfly.cloud.galleon.pack}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-default-config</layer>
<layer>mvc-krazo</layer>
</layers>
<record-provisioning-state>true</record-provisioning-state>
<galleon-options>
<stability-level>preview</stability-level>
<jboss-fork-embedded>true</jboss-fork-embedded>
</galleon-options>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5ec07d5

Please sign in to comment.