github.com/verrazzano/verrazzano@v1.7.1/tests/testdata/test-applications/weblogic/hello-weblogic/src/main/webapp/WEB-INF/web.xml (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  <!-- Copyright (c) 2022, Oracle and/or its affiliates. -->
     3  <!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. -->
     4  
     5  <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     6           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     7           xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
     8           version="4.0">
     9    <display-name>Hello WebLogic</display-name>
    10    <welcome-file-list>
    11      <welcome-file>index.html</welcome-file>
    12    </welcome-file-list>
    13  
    14  </web-app>