- Joined
 - Aug 19, 2016
 
- Messages
 - 11
 
- Thread Author
 - #1
 
So you can right click create a manifest in intellij
Go to settings > editor > File and Code Templates > Green '+'
	
	
	
		
Here's a picture:
		
		
	
	
		
	
			
			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:
	





