Pointer to DukeScript archetype, that one isn't obsolete
←Older revision |
Revision as of 06:14, 17 January 2017 |
Line 3: |
Line 3: |
| == Knockout for [[Java]] == | | == Knockout for [[Java]] == |
| | | |
- | Are you coming from a [[Java]] camp, yet interested in rendering via [[HTML]]? Well, then you can either use [[DukeScriptInNetBeans]] or stay on command and be just three steps (in case you have [[Maven]] and [[JDK]]7 installed) away from reaching a nirvana. Just type: | + | Are you coming from a [[Java]] camp, yet interested in rendering via [[HTML]]? Well, then you can either use [[DukeScriptInNetBeans]] or stay on command and be just three steps (in case you have [[Maven]] and [[JDK]]7 installed) away from [https://dukescript.com/update/2015/02/05/New-Version-of-Dukescript.html reaching a nirvana]. Just type: |
| | | |
| <source lang="bash"> | | <source lang="bash"> |
| $ mvn archetype:generate \ | | $ mvn archetype:generate \ |
- | -DarchetypeGroupId=org.apidesign.html \
| + | -DarchetypeGroupId=com.dukescript.archetype \ |
- | -DarchetypeArtifactId=knockout4j-archetype \
| + | -DarchetypeArtifactId=knockout4j-archetype \ |
- | -DarchetypeVersion=1.1.2 \
| + | -DarchetypeVersion=0.16 |
- | -Dbck2brwsr=true
| + | |
| </source> | | </source> |
| | | |
Line 17: |
Line 16: |
| <source lang="bash"> | | <source lang="bash"> |
| $ cd myfirstbrwsrpage | | $ cd myfirstbrwsrpage |
- | $ mvn process-classes exec:java | + | $ mvn package |
| + | $ mvn -f client process-classes exec:exec |
| </source> | | </source> |
| | | |