浏览代码

Added weblogic.xml to WAR for deployment on WebLogic (issue 199)

tags/v1.3.0
James Moger 11 年前
父节点
当前提交
d9c9fe1709
共有 3 个文件被更改,包括 12 次插入0 次删除
  1. 1
    0
      build.xml
  2. 2
    0
      releases.moxie
  3. 9
    0
      src/main/java/WEB-INF/weblogic.xml

+ 1
- 0
build.xml 查看文件

@@ -279,6 +279,7 @@
<include name="LICENSE" />
<include name="NOTICE" />
</zipfileset>
<zipfileset prefix="WEB-INF" file="${project.compileOutputDirectory}/WEB-INF/weblogic.xml" />
<!-- Classes and classpath resources -->
<zipfileset prefix="WEB-INF/classes" dir="${project.compileOutputDirectory}">
<include name="**/*.class" />

+ 2
- 0
releases.moxie 查看文件

@@ -12,6 +12,7 @@ r17: {
additions:
- Option to force client-side basic authentication instead of form-based authentication if web.authenticateViewPages=true (issue 222)
- Added weblogic.xml to WAR for deployment on WebLogic (issue 199)
- Optional periodic LDAP user and team pre-fetching & synchronization
- Display name and version in Tomcat Manager
- FogBugz post-receive hook script
@@ -20,6 +21,7 @@ r17: {
contributors:
- Christian Aistleitner
- Jay Meyer
- github/furinzen
- github/mschaefers
- github/thefake

+ 9
- 0
src/main/java/WEB-INF/weblogic.xml 查看文件

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd">
<wls:weblogic-version>12.1.1</wls:weblogic-version>
<wls:context-root>gitblit</wls:context-root>
<wls:container-descriptor>
<wls:show-archived-real-path-enabled>true</wls:show-archived-real-path-enabled>
<wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes>
</wls:container-descriptor>
</wls:weblogic-web-app>

正在加载...
取消
保存