mirror of
https://github.com/google/nomulus.git
synced 2025-05-09 00:08:21 +02:00
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
34 lines
836 B
XML
34 lines
836 B
XML
<?xml version="1.0"
|
|
encoding="UTF-8"?>
|
|
|
|
<application
|
|
xmlns="http://java.sun.com/xml/ns/javaee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
|
http://java.sun.com/xml/ns/javaee/application_5.xsd"
|
|
version="5">
|
|
|
|
<description>Google Registry</description>
|
|
<display-name>Google Registry</display-name>
|
|
|
|
<!-- Modules -->
|
|
<!-- The default module should be listed first -->
|
|
<module>
|
|
<web>
|
|
<web-uri>default</web-uri>
|
|
<context-root>default</context-root>
|
|
</web>
|
|
</module>
|
|
<module>
|
|
<web>
|
|
<web-uri>backend</web-uri>
|
|
<context-root>backend</context-root>
|
|
</web>
|
|
</module>
|
|
<module>
|
|
<web>
|
|
<web-uri>tools</web-uri>
|
|
<context-root>tools</context-root>
|
|
</web>
|
|
</module>
|
|
</application>
|