James Moger
2013-03-28 d9c9fe17099a083eb603a58bfa7babe0aa3336e0
Added weblogic.xml to WAR for deployment on WebLogic (issue-199)
1 files added
2 files modified
12 ■■■■■ changed files
build.xml 1 ●●●● patch | view | raw | blame | history
releases.moxie 2 ●●●●● patch | view | raw | blame | history
src/main/java/WEB-INF/weblogic.xml 9 ●●●●● patch | view | raw | blame | history
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" />
releases.moxie
@@ -12,6 +12,7 @@
    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 @@
    contributors:
    - Christian Aistleitner
    - Jay Meyer
    - github/furinzen
    - github/mschaefers
    - github/thefake
src/main/java/WEB-INF/weblogic.xml
New file
@@ -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>