-
-
Notifications
You must be signed in to change notification settings - Fork 23
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 #2648 from jlawyerorg/master
merge master into release for version 3.0.0.1
- Loading branch information
Showing
1,206 changed files
with
211,659 additions
and
14,625 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
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
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,48 @@ | ||
#!/bin/bash | ||
|
||
# requires: sudo apt-get install openjfx | ||
|
||
# set tools | ||
export ANTEXEC=../tools/apache-ant-1.10.14/bin/ant | ||
export MVNEXEC=../tools/apache-maven-3.9.7/bin/mvn | ||
|
||
export JDK17=../tools/jdk-17.0.11-full/ | ||
export JDK11=../tools/jdk-11.0.23-full/ | ||
export JDK8=../tools/jdk8u412-full/ | ||
|
||
# skips tests | ||
function check_error { | ||
if [ $1 -gt 0 ]; then | ||
echo "Found error!" | ||
exit 1 | ||
fi | ||
} | ||
|
||
# export JAVA_HOME=/home/jens/bin/jdk-17.0.9-full/ | ||
export JAVA_HOME=$JDK17 | ||
|
||
# there is an OpenJDK bug on Ubuntu, causing Surefire tests to fail - skip tests for now | ||
$MVNEXEC -f j-lawyer-cloud/pom.xml install -DskipTests | ||
check_error $? | ||
|
||
$ANTEXEC -buildfile j-lawyer-fax/build.xml jar | ||
check_error $? | ||
$ANTEXEC -buildfile j-lawyer-server-common/build.xml jar | ||
check_error $? | ||
$ANTEXEC -Dj2ee.server.home=/home/travis -buildfile j-lawyer-server-entities/build.xml dist | ||
check_error $? | ||
$ANTEXEC -buildfile j-lawyer-server-api/build.xml jar | ||
check_error $? | ||
export JAVA_HOME=$JDK8 | ||
$ANTEXEC -Dplatforms.default_platform.home=$JDK11 -Dj2ee.server.home=/home/travis -buildfile j-lawyer-server/build.xml dist | ||
check_error $? | ||
$ANTEXEC -buildfile j-lawyer-io-common/build.xml jar | ||
check_error $? | ||
export JAVA_HOME=$JDK17 | ||
$ANTEXEC -Dplatforms.JDK_17.home=$JDK17 -buildfile j-lawyer-client/build.xml jar | ||
check_error $? | ||
|
||
# export JAVA_HOME=/home/jens/bin/jdk8u265-full/ | ||
# there is an OpenJDK bug on Ubuntu, causing Surefire tests to fail - skip tests for now | ||
# $MVNEXEC -f j-lawyer-backupmgr/pom.xml package -DskipTests -Djava.home=/home/jens/bin/jdk8u265-full/jre | ||
|
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,3 @@ | ||
#!/bin/bash | ||
|
||
cp j-lawyer-server/dist/j-lawyer-server.ear ../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 |
---|---|---|
@@ -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.4.0.13 | ||
echo 3.0.0.1 | ||
|
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 | ||
|
||
|
Oops, something went wrong.