Santaliz
SERP Spy
LEVEL 2
700 XP
Install with cmd or termux
Code:
Code:
Code:
```php
<?php
$xmlContent = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5">
<output url="file://\$MODULE_DIR$/target/classes" />
<output-test url="file://\$MODULE_DIR$/target/test-classes" />
<content url="file://\$MODULE_DIR$">
<sourceFolder url="file://\$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://\$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://\$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://\$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" scope="PROVIDED" name="ojdbc7" level="project" />
<orderEntry type="library" name="ojdbc71" level="project" />
</component>
</module>
XML;
// If you want to echo it out
echo $xmlContent;
// If you want to save it to a file
file_put_contents('module_config.xml', $xmlContent);
?>
```