You can find it here. There is the first commit with initial source code and some hello TTDMMO page.
There was a little issue with setting commiter in NetBeans. The solution is to add lines below to your local .git/config file.
[user]
name = lastuvka
email = xlastuvka@gmail.com
There was also created new action (specific in nbactions.xml) for deploying frontend on WildFly 8.0.
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-deployToJBOss</actionName>
<displayName>deployToJBOss</displayName>
<goals>
<goal>jboss-as:deploy</goal>
</goals>
</action>
</actions>
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-deployToJBOss</actionName>
<displayName>deployToJBOss</displayName>
<goals>
<goal>jboss-as:deploy</goal>
</goals>
</action>
</actions>
No comments:
Post a Comment