Skip to content

Commit

Permalink
added wildfly
Browse files Browse the repository at this point in the history
tried to add openliberty (doesn't work yet)
  • Loading branch information
lprimak committed Oct 17, 2024
1 parent 38f061b commit 2b985c0
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 1 deletion.
21 changes: 21 additions & 0 deletions ear1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,33 @@
<dependency>
<groupId>com.sample</groupId>
<artifactId>war1</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.sample</groupId>
<artifactId>war2</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>5.0.1.Final</version>
<configuration>
<version>33.0.2.Final</version>
<server-config>standalone-full.xml</server-config>
</configuration>
</plugin>
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.11.1</version>
</plugin>
</plugins>
</build>
</project>
File renamed without changes.
16 changes: 16 additions & 0 deletions ear1/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<server description="defaultServer">

<featureManager>
<feature>jakartaee-10.0</feature>
</featureManager>

<basicRegistry id="defaultBasicRegistry" realm="BasicRealm">
<user name="username" password="password" />
</basicRegistry>

<keyStore id="defaultKeyStore" password="password" />

<httpEndpoint id="defaultHttpEndpoint" host="*" httpPort="9080" httpsPort="9443" />

<webApplication location="ear1-1.x-SNAPSHOT.ear" contextRoot="/"/>
</server>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>com.flowlogix</groupId>
<artifactId>payara-pom</artifactId>
<version>35</version>
<version>36</version>
</parent>

<properties>
Expand Down

0 comments on commit 2b985c0

Please sign in to comment.