<include name="LICENSE" />\r
<include name="NOTICE" />\r
</zipfileset>\r
+ <zipfileset prefix="WEB-INF" file="${project.compileOutputDirectory}/WEB-INF/weblogic.xml" />\r
<!-- Classes and classpath resources -->\r
<zipfileset prefix="WEB-INF/classes" dir="${project.compileOutputDirectory}">\r
<include name="**/*.class" />\r
\r
additions: \r
- Option to force client-side basic authentication instead of form-based authentication if web.authenticateViewPages=true (issue 222)\r
+ - Added weblogic.xml to WAR for deployment on WebLogic (issue 199)\r
- Optional periodic LDAP user and team pre-fetching & synchronization\r
- Display name and version in Tomcat Manager\r
- FogBugz post-receive hook script\r
\r
contributors:\r
- Christian Aistleitner\r
+ - Jay Meyer\r
- github/furinzen\r
- github/mschaefers\r
- github/thefake\r
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>\r
+<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">\r
+ <wls:weblogic-version>12.1.1</wls:weblogic-version>\r
+ <wls:context-root>gitblit</wls:context-root>\r
+ <wls:container-descriptor>\r
+ <wls:show-archived-real-path-enabled>true</wls:show-archived-real-path-enabled>\r
+ <wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes>\r
+ </wls:container-descriptor>\r
+</wls:weblogic-web-app>
\ No newline at end of file