-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2219 from jlawyerorg/feature/wildfly-26-ee
Feature/wildfly 26 ee
- Loading branch information
Showing
150 changed files
with
1,068 additions
and
803 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
cp j-lawyer-server/dist/j-lawyer-server.ear ~/bin/wildfly-16.0.0.Final//standalone/deployments/j-lawyer-server.ear | ||
cp j-lawyer-server/dist/j-lawyer-server.ear ~/bin/wildfly-26.1.3.Final/standalone/deployments/j-lawyer-server.ear |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,5 @@ jlversion=`echo "$jlversion" | tr _ .` | |
|
||
# tadaaa! | ||
# echo $jlversion | ||
echo 2.6.0.5 | ||
echo 2.6.0.6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Docker + Ubuntu-16.04 + Mysql-5.7 | ||
Docker + Ubuntu + Mysql-5.7 | ||
|
||
#### parameter | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Use latest jboss/base-jdk:11 image as the base | ||
FROM jboss/base-jdk:8 | ||
FROM jboss/base-jdk:17 | ||
MAINTAINER j-dimension "[email protected]" | ||
|
||
# Set the WILDFLY_VERSION env variable | ||
ENV WILDFLY_VERSION 16.0.0.Final | ||
ENV WILDFLY_VERSION 26.1.3.Final | ||
ENV WILDFLY_SHA1 287c21b069ec6ecd80472afec01384093ed8eb7d | ||
ENV JBOSS_HOME /opt/jboss/wildfly | ||
|
||
|
@@ -27,7 +27,7 @@ RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | |
# Add the WildFly distribution to /opt, and make wildfly the owner of the extracted tar content | ||
# Make sure the distribution is available from a well-known place | ||
RUN cd $HOME \ | ||
&& curl -O https://download.jboss.org/wildfly/$WILDFLY_VERSION/wildfly-$WILDFLY_VERSION.tar.gz \ | ||
&& curl -O https://github.com/wildfly/wildfly/releases/download/26.1.3.Final/wildfly-26.1.3.Final.tar.gz \ | ||
&& sha1sum wildfly-$WILDFLY_VERSION.tar.gz | grep $WILDFLY_SHA1 \ | ||
&& tar xf wildfly-$WILDFLY_VERSION.tar.gz \ | ||
&& mv $HOME/wildfly-$WILDFLY_VERSION $JBOSS_HOME \ | ||
|
@@ -54,7 +54,7 @@ COPY j-lawyer-data/ /opt/jboss/j-lawyer-data/ | |
|
||
COPY ./standalone.xml /opt/jboss/wildfly/standalone/configuration/standalone.xml | ||
COPY ./j-lawyer-server.ear /opt/jboss/wildfly/standalone/deployments/j-lawyer-server.ear | ||
COPY ./mysql/main/* /opt/jboss/wildfly/modules/system/layers/base/com/mysql/main/ | ||
COPY ./mysql/driver8/main/* /opt/jboss/wildfly/modules/system/layers/base/com/mysql/driver8/main/ | ||
|
||
|
||
# Expose the ports we're interested in | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright The WildFly Authors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
<module name="com.mysql.driver8" xmlns="urn:jboss:module:1.9"> | ||
|
||
<resources> | ||
<resource-root path="mysql-connector-java-8.0.33.jar"/> | ||
</resources> | ||
|
||
<dependencies> | ||
<!-- module name="java.compiler"/> | ||
<module name="java.desktop"/> | ||
<module name="java.instrument"/> | ||
<module name="java.logging"/> | ||
<module name="java.management"/> | ||
<module name="java.naming"/> | ||
<module name="java.scripting"/> | ||
<module name="java.sql"/> | ||
<module name="java.transaction.xa"/> | ||
<module name="org.slf4j"/ --> | ||
<module name="javax.api"/> | ||
<module name="javax.transaction.api"/> | ||
</dependencies> | ||
</module> |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.