diff --git a/.DS_Store b/.DS_Store index 4769007..8ac151f 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/README.md b/README.md index 8af9c35..46b705c 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,18 @@ Dockerized TML Web System $ sudo yum install -y python-pip $ sudo pip install docker-compose + ### 由Private register移除Docker Image + +```bash +registry='localhost:5000' +name='my-image' +curl -v -sSL -X DELETE "http://${registry}/v2/${name}/manifests/$( + curl -sSL -I \ + -H "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + "http://${registry}/v2/${name}/manifests/$( + curl -sSL "http://${registry}/v2/${name}/tags/list" | jq -r '.tags[0]' + )" \ + | awk '$1 == "Docker-Content-Digest:" { print $2 }' \ + | tr -d $'\r' \ +)" +``` \ No newline at end of file diff --git a/wildfly/.DS_Store b/wildfly_base/.DS_Store similarity index 85% rename from wildfly/.DS_Store rename to wildfly_base/.DS_Store index 8ea0b1e..6578966 100644 Binary files a/wildfly/.DS_Store and b/wildfly_base/.DS_Store differ diff --git a/wildfly/Dockerfile b/wildfly_base/Dockerfile similarity index 100% rename from wildfly/Dockerfile rename to wildfly_base/Dockerfile diff --git a/wildfly_base/README.md b/wildfly_base/README.md new file mode 100644 index 0000000..e69de29 diff --git a/wildfly/config/standalone-sp.xml b/wildfly_base/config/standalone-sp.xml similarity index 100% rename from wildfly/config/standalone-sp.xml rename to wildfly_base/config/standalone-sp.xml diff --git a/wildfly/config/standalone.xml b/wildfly_base/config/standalone.xml similarity index 100% rename from wildfly/config/standalone.xml rename to wildfly_base/config/standalone.xml diff --git a/wildfly/initial/setup.sh b/wildfly_base/initial/setup.sh similarity index 100% rename from wildfly/initial/setup.sh rename to wildfly_base/initial/setup.sh diff --git a/wildfly/initial/startwf.sh b/wildfly_base/initial/startwf.sh similarity index 100% rename from wildfly/initial/startwf.sh rename to wildfly_base/initial/startwf.sh diff --git a/wildfly/modules/make_modules.sh b/wildfly_base/modules/make_modules.sh similarity index 100% rename from wildfly/modules/make_modules.sh rename to wildfly_base/modules/make_modules.sh diff --git a/wildfly/modules/module_commons_fileupload.xml b/wildfly_base/modules/module_commons_fileupload.xml similarity index 100% rename from wildfly/modules/module_commons_fileupload.xml rename to wildfly_base/modules/module_commons_fileupload.xml diff --git a/wildfly/modules/module_jdbc_mysql.xml b/wildfly_base/modules/module_jdbc_mysql.xml similarity index 100% rename from wildfly/modules/module_jdbc_mysql.xml rename to wildfly_base/modules/module_jdbc_mysql.xml diff --git a/wildfly/modules/module_jdbc_oracle.xml b/wildfly_base/modules/module_jdbc_oracle.xml similarity index 100% rename from wildfly/modules/module_jdbc_oracle.xml rename to wildfly_base/modules/module_jdbc_oracle.xml diff --git a/wildfly/modules/module_zk.xml b/wildfly_base/modules/module_zk.xml similarity index 100% rename from wildfly/modules/module_zk.xml rename to wildfly_base/modules/module_zk.xml diff --git a/wildfly/modules/module_zk7.xml b/wildfly_base/modules/module_zk7.xml similarity index 100% rename from wildfly/modules/module_zk7.xml rename to wildfly_base/modules/module_zk7.xml diff --git a/wildfly/modules/module_zk8.xml b/wildfly_base/modules/module_zk8.xml similarity index 100% rename from wildfly/modules/module_zk8.xml rename to wildfly_base/modules/module_zk8.xml diff --git a/wildfly_tml/.DS_Store b/wildfly_tml/.DS_Store new file mode 100644 index 0000000..c78cd58 Binary files /dev/null and b/wildfly_tml/.DS_Store differ diff --git a/wildfly_tml/Dockerfile b/wildfly_tml/Dockerfile new file mode 100755 index 0000000..bc1ae2d --- /dev/null +++ b/wildfly_tml/Dockerfile @@ -0,0 +1,22 @@ +FROM shihxuancheng/wildfly-base:latest + +# Environment variable with default value +ENV WF_CONFIG="standalone.xml" + +LABEL maintainer="richard_shih@wanhai.com" + +#prepare tmp dir +COPY --chown=jboss . ${JBOSS_HOME}/config + +#customize modules +RUN cd ${JBOSS_HOME}/config/modules && ./make_modules.sh + +#customize settings +RUN cd ${JBOSS_HOME}/config/initial && ./setup.sh + +#cleanup +RUN rm -rf ${JBOSS_HOME}/config + +EXPOSE 8080 9990 + +CMD ["sh","-c","/opt/jboss/wildfly/bin/startwf.sh"] \ No newline at end of file diff --git a/wildfly_tml/README.md b/wildfly_tml/README.md new file mode 100644 index 0000000..76522f2 --- /dev/null +++ b/wildfly_tml/README.md @@ -0,0 +1,2 @@ +# Wildfly-tml docker image # + \ No newline at end of file diff --git a/wildfly_tml/config/standalone-sp.xml b/wildfly_tml/config/standalone-sp.xml new file mode 100644 index 0000000..8f0bbe3 --- /dev/null +++ b/wildfly_tml/config/standalone-sp.xml @@ -0,0 +1,529 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE + h2 + + sa + sa + + + + jdbc:mysql://${SESSIONDB_HOST}/${SESSIONDB_NAMAE} + com.mysql.jdbc.Driver + mysql + + ${SESSIONDB_USER} + ${SESSIONDB_PASS} + + + + + + + org.h2.jdbcx.JdbcDataSource + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${jboss.bind.address:127.0.0.1} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/wildfly_tml/config/standalone.xml b/wildfly_tml/config/standalone.xml new file mode 100644 index 0000000..6443c15 --- /dev/null +++ b/wildfly_tml/config/standalone.xml @@ -0,0 +1,514 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE + h2 + + sa + sa + + + + + + + + org.h2.jdbcx.JdbcDataSource + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${jboss.bind.address:127.0.0.1} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/initial/setup.sh b/wildfly_tml/initial/setup.sh new file mode 100755 index 0000000..87236d1 --- /dev/null +++ b/wildfly_tml/initial/setup.sh @@ -0,0 +1,6 @@ +# Add user for adminstration purpose +# ${JBOSS_HOME}/bin/add-user.sh admin wanhai_2 --silent + +cp ./startwf.sh ${JBOSS_HOME}/bin/startwf.sh +#session persistance config +# cp ../config/*.* ${JBOSS_HOME}/standalone/configuration/ \ No newline at end of file diff --git a/wildfly_tml/initial/startwf.sh b/wildfly_tml/initial/startwf.sh new file mode 100755 index 0000000..7cce0b1 --- /dev/null +++ b/wildfly_tml/initial/startwf.sh @@ -0,0 +1,5 @@ +#variables +IPADDRESS=$(hostname -i) +/opt/jboss/wildfly/bin/standalone.sh -c ${WF_CONFIG} -b ${IPADDRESS} -Djboss.bind.address.management=${IPADDRESS} + + diff --git a/wildfly_tml/modules/.DS_Store b/wildfly_tml/modules/.DS_Store new file mode 100644 index 0000000..60b2e64 Binary files /dev/null and b/wildfly_tml/modules/.DS_Store differ diff --git a/wildfly_tml/modules/make_modules.sh b/wildfly_tml/modules/make_modules.sh new file mode 100755 index 0000000..77f6cfa --- /dev/null +++ b/wildfly_tml/modules/make_modules.sh @@ -0,0 +1,94 @@ +#variablies +WF_MODULE_PATH=${JBOSS_HOME}'/modules' + +#setup module google gson(2.7) +echo 'Download jars of google gson =>' +mkdir -p ${WF_MODULE_PATH}/com/google/gson/main +curl -# -o ${WF_MODULE_PATH}/com/google/gson/main/gson-2.7.jar.jar http://central.maven.org/maven2/com/google/code/gson/gson/2.7/gson-2.7.jar +cp ./module_gson.xml ${WF_MODULE_PATH}/com/google/gson/main/module.xml + +#setup module of apache commons-logging (1.1.3) +echo 'Download jars of commons-logging =>' +mkdir -p ${WF_MODULE_PATH}/org/apache/commons/logging/1.1.3 +curl -# -o ${WF_MODULE_PATH}/org/apache/commons/logging/1.1.3/commons-logging-1.1.3.jar http://central.maven.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar +cp ./module_commons_logging_113.xml ${WF_MODULE_PATH}/org/apache/commons/logging/1.1.3/module.xml +#setup default slot of apache commons-logging(default is 1.1.3) +mkdir ${WF_MODULE_PATH}/org/apache/commons/main && cp ./module_commons_logging.xml ${WF_MODULE_PATH}/org/apache/commons/main/module.xml + +#setup module of apache commons-net(3.6) +echo 'Download jars of common-net =>' +mkdir -p ${WF_MODULE_PATH}/org/apache/commons/net/main +curl -# -o ${WF_MODULE_PATH}//org/apache/commons/net/main/commons-net-3.6.jar http://central.maven.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar +cp ./module_commons_net.xml ${WF_MODULE_PATH}/org/apache/commons/net/main/module.xml + +#setup module of groovy(2.4.7) +echo 'Download jars of groovy=>' +mkdir -p ${WF_MODULE_PATH}/org/codehaus/groovy/main +curl -# -o ${WF_MODULE_PATH}/org/codehaus/groovy/main/groovy-all-2.4.7.jar http://central.maven.org/maven2/org/codehaus/groovy/groovy-all/2.4.7/groovy-all-2.4.7.jar +cp ./module_groovy.xml ${WF_MODULE_PATH}/org/codehaus/groovy/main/module.xml + +#setup module of google zxing(3.2.1) +echo 'Download jars of google zxing=>' +mkdir -p ${WF_MODULE_PATH}/com/google/zxing/main +curl -# -o ${WF_MODULE_PATH}/com/google/zxing/main/javase-3.2.1.jar http://central.maven.org/maven2/com/google/zxing/javase/3.2.1/javase-3.2.1.jar +curl -# -o ${WF_MODULE_PATH}/com/google/zxing/main/jcommander-1.48.jar http://central.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar +curl -# -o ${WF_MODULE_PATH}/com/google/zxing/main/core-3.2.1.jar http://central.maven.org/maven2/com/google/zxing/core/3.2.1/core-3.2.1.jar +cp ./module_zxing.xml ${WF_MODULE_PATH}/com/google/zxing/main/module.xml + +#setup module of qrgen(2.0) +echo 'Download jars of qrgen=>' +mkdir -p ${WF_MODULE_PATH}/net/glxn/qrgen/main +curl -# -o ${WF_MODULE_PATH}/net/glxn/qrgen/main/javase-2.0.jar http://central.maven.org/maven2/net/glxn/qrgen/javase/2.0/javase-2.0.jar +curl -# -o ${WF_MODULE_PATH}/net/glxn/qrgen/main/core-2.0.jar http://central.maven.org/maven2/net/glxn/qrgen/core/2.0/core-2.0.jar +curl -# -o ${WF_MODULE_PATH}/net/glxn/qrgen/main/jfreesvg-2.1.jar http://central.maven.org/maven2/org/jfree/jfreesvg/2.1/jfreesvg-2.1.jar +cp ./module_qrgen.xml ${WF_MODULE_PATH}/net/glxn/qrgen/main/module.xml + +#setup module of sentry(1.7.3) +echo 'Download jars of sentry=>' +mkdir -p ${WF_MODULE_PATH}/io/sentry/main +curl -# -o ${WF_MODULE_PATH}/io/sentry/main/sentry-1.7.3.jar http://central.maven.org/maven2/io/sentry/sentry/1.7.3/sentry-1.7.3.jar +curl -# -o ${WF_MODULE_PATH}/io/sentry/main/jackson-core-2.8.7.jar http://central.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.8.7/jackson-core-2.8.7.jar +curl -# -o ${WF_MODULE_PATH}/io/sentry/main/slf4j-api-1.7.24.jar http://central.maven.org/maven2/org/slf4j/slf4j-api/1.7.24/slf4j-api-1.7.24.jar +cp ./module_sentry.xml ${WF_MODULE_PATH}/io/sentry/main/module.xml + +#setup module of springframework(4.0.6) +echo 'Download jars of springframework=>' +mkdir -p ${WF_MODULE_PATH}/org/springframework/4.0.6 +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/aopalliance-1.0.jar http://central.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-tx-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-tx/4.0.6.RELEASE/spring-tx-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-context-support-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-context-support/4.0.6.RELEASE/spring-context-support-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-jdbc-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-jdbc/4.0.6.RELEASE/spring-jdbc-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-webmvc-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-webmvc/4.0.6.RELEASE/spring-webmvc-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-web-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-web/4.0.6.RELEASE/spring-web-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-aop-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-aop/4.0.6.RELEASE/spring-aop-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-expression-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-expression/4.0.6.RELEASE/spring-expression-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-context-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-context/4.0.6.RELEASE/spring-context-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-core-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-core/4.0.6.RELEASE/spring-core-4.0.6.RELEASE.jar +curl -# -o ${WF_MODULE_PATH}/org/springframework/4.0.6/spring-beans-4.0.6.RELEASE.jar http://central.maven.org/maven2/org/springframework/spring-beans/4.0.6.RELEASE/spring-beans-4.0.6.RELEASE.jar +cp ./module_spring_406.xml ${WF_MODULE_PATH}/org/springframework/4.0.6/module.xml +#setup default slot of springframework module(default is 4.0.6) +mkdir ${WF_MODULE_PATH}/org/springframework/main && cp ./module_spring.xml ${WF_MODULE_PATH}/org/springframework/main/module.xml + +#setup module of jasperreports(4.6.1) +echo 'Download jars of jasperreports=>' +mkdir -p ${WF_MODULE_PATH}/net/sf/jasperreports/6.4.1 +curl -# -o ${WF_MODULE_PATH}/net/sf/jasperreports/6.4.1/jasperreports-6.4.1.jar http://central.maven.org/maven2/net/sf/jasperreports/jasperreports/6.4.1/jasperreports-6.4.1.jar +cp ./module_jasperreports_641.xml ${WF_MODULE_PATH}/net/sf/jasperreports/6.4.1/module.xml +#setup default slot of jasperreports module(default is 6.4.1) +mkdir ${WF_MODULE_PATH}/net/sf/jasperreports/main && cp ./module_jasperreports.xml ${WF_MODULE_PATH}/net/sf/jasperreports/main/module.xml + +#setup module of jasperreports font + +#setup module of wanhai base +#setup module of wanhai zk base +#setup module of tml base +#setup module of tml vo +#setup module of tml bizbean + + + + + + + + diff --git a/wildfly_tml/modules/module_commons_logging.xml b/wildfly_tml/modules/module_commons_logging.xml new file mode 100644 index 0000000..6ae0f17 --- /dev/null +++ b/wildfly_tml/modules/module_commons_logging.xml @@ -0,0 +1,26 @@ + + + + + + \ No newline at end of file diff --git a/wildfly_tml/modules/module_commons_logging_113.xml b/wildfly_tml/modules/module_commons_logging_113.xml new file mode 100644 index 0000000..30dc8e8 --- /dev/null +++ b/wildfly_tml/modules/module_commons_logging_113.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/wildfly_tml/modules/module_commons_net.xml b/wildfly_tml/modules/module_commons_net.xml new file mode 100644 index 0000000..271fcfc --- /dev/null +++ b/wildfly_tml/modules/module_commons_net.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_groovy.xml b/wildfly_tml/modules/module_groovy.xml new file mode 100644 index 0000000..beed3e6 --- /dev/null +++ b/wildfly_tml/modules/module_groovy.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_gson.xml b/wildfly_tml/modules/module_gson.xml new file mode 100644 index 0000000..bbb618f --- /dev/null +++ b/wildfly_tml/modules/module_gson.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_jasperreports.xml b/wildfly_tml/modules/module_jasperreports.xml new file mode 100644 index 0000000..2e92c2c --- /dev/null +++ b/wildfly_tml/modules/module_jasperreports.xml @@ -0,0 +1,27 @@ + + + + + + + diff --git a/wildfly_tml/modules/module_jasperreports_641.xml b/wildfly_tml/modules/module_jasperreports_641.xml new file mode 100644 index 0000000..e96a1e8 --- /dev/null +++ b/wildfly_tml/modules/module_jasperreports_641.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_jasperreports_font.xml b/wildfly_tml/modules/module_jasperreports_font.xml new file mode 100644 index 0000000..6bc5030 --- /dev/null +++ b/wildfly_tml/modules/module_jasperreports_font.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_qrgen.xml b/wildfly_tml/modules/module_qrgen.xml new file mode 100644 index 0000000..181f516 --- /dev/null +++ b/wildfly_tml/modules/module_qrgen.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/wildfly_tml/modules/module_sentry.xml b/wildfly_tml/modules/module_sentry.xml new file mode 100644 index 0000000..a5d3364 --- /dev/null +++ b/wildfly_tml/modules/module_sentry.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_spring.xml b/wildfly_tml/modules/module_spring.xml new file mode 100644 index 0000000..c25fe2d --- /dev/null +++ b/wildfly_tml/modules/module_spring.xml @@ -0,0 +1,27 @@ + + + + + + + diff --git a/wildfly_tml/modules/module_spring_406.xml b/wildfly_tml/modules/module_spring_406.xml new file mode 100644 index 0000000..e944aba --- /dev/null +++ b/wildfly_tml/modules/module_spring_406.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_tml.xml b/wildfly_tml/modules/module_tml.xml new file mode 100644 index 0000000..0fa6227 --- /dev/null +++ b/wildfly_tml/modules/module_tml.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_tml_bizbean.xml b/wildfly_tml/modules/module_tml_bizbean.xml new file mode 100644 index 0000000..c843726 --- /dev/null +++ b/wildfly_tml/modules/module_tml_bizbean.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_tml_vo.xml b/wildfly_tml/modules/module_tml_vo.xml new file mode 100644 index 0000000..2a3b44a --- /dev/null +++ b/wildfly_tml/modules/module_tml_vo.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_wanhai_base.xml b/wildfly_tml/modules/module_wanhai_base.xml new file mode 100644 index 0000000..447b281 --- /dev/null +++ b/wildfly_tml/modules/module_wanhai_base.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_wanhai_zk.xml b/wildfly_tml/modules/module_wanhai_zk.xml new file mode 100644 index 0000000..a27634c --- /dev/null +++ b/wildfly_tml/modules/module_wanhai_zk.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/wildfly_tml/modules/module_zxing.xml b/wildfly_tml/modules/module_zxing.xml new file mode 100644 index 0000000..27daef9 --- /dev/null +++ b/wildfly_tml/modules/module_zxing.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file