Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resource Intellij Manifest Template

Joined
Aug 19, 2016
Messages
11
So you can right click create a manifest in intellij

Go to settings > editor > File and Code Templates > Green '+'

Code:
<manifest>
    <main-class>${PACKAGE_NAME}.${NAME}</main-class>
    <name>${NAME}</name>
    <tag-line>TAGE_LINE</tag-line>
    <description>DESCRIPTION</description>
    <version>0.0.1</version>
   
    <compatibility>
        <game>RS3</game>
        <game>OSRS</game>
    </compatibility>
   
    <categories>
        <category>OTHER</category>
    </categories>
   
    <internal-id>${Name}</internal-id>
   
    <open-source>false</open-source>
    <hidden>false</hidden>
    <access>public</access>
    <tags>
        <tag>Tag</tag>
    </tags>
</manifest>

Here's a picture:
f357cf274ce592f0840024d907618b56.png
 
Top