Created
October 15, 2018 12:43
-
-
Save singhsegv/e5843ce72f7e6bdf9ebd7a7fbdf6b47e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<recipe> | |
<instantiate from="src/app_package/Contract.java.ftl" | |
to="${escapeXmlAttribute(srcOut)}/${className}Contract.java" /> | |
<instantiate from="src/app_package/Activity.java.ftl" | |
to="${escapeXmlAttribute(srcOut)}/${className}Activity.java" /> | |
<instantiate from="src/app_package/Presenter.java.ftl" | |
to="${escapeXmlAttribute(srcOut)}/${className}Presenter.java" /> | |
<instantiate from="src/app_package/ActivityModule.java.ftl" | |
to="${escapeXmlAttribute(srcOut)}/${className}ActivityModule.java" /> | |
<open file="${srcOut}/${className}Presenter.java"/> | |
<open file="${srcOut}/${className}Contract.java"/> | |
<open file="${srcOut}/${className}Activity.java"/> | |
<open file="${srcOut}/${className}ActivityModule.java"/> | |
</recipe> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment