Browse Source

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

tags/v1.3.0
James Moger 11 years ago
parent
commit
d9c9fe1709
3 changed files with 12 additions and 0 deletions
  1. 1
    0
      build.xml
  2. 2
    0
      releases.moxie
  3. 9
    0
      src/main/java/WEB-INF/weblogic.xml

+ 1
- 0
build.xml View File

@@ -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 View File

@@ -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 View 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>

Loading…
Cancel
Save