Anyway Currently Only Python MyDaemon works by commenting out the pom.xml in the following way.
<pom.xml>
108 <!--
109 <execution>
110 <id>clean-daemon</id>
111 <phase>clean</phase>
112 <goals>
113 <goal>exec</goal>
114 </goals>
115 <configuration>
116 <executable>scons</executable>
117 <arguments>
118 <argument>-c</argument>
119 </arguments>
120 <workingDirectory>./daemon</workingDirectory>
121 </configuration>
122 </execution>
123
124 <execution>
125 <id>compile-daemon</id>
126 <phase>compile</phase>
127 <goals>
128 <goal>exec</goal>
129 </goals>
130 <configuration>
131 <executable>scons</executable>
132 <arguments>
133 <argument>release=1</argument>
134 </arguments>
135 <workingDirectory>./daemon</workingDirectory>
136 </configuration>
137 </execution>
138
139 <execution>
140 <id>copy-daemon</id>
141 <phase>compile</phase>
142 <goals>
143 <goal>exec</goal>
144 </goals>
145 <configuration>
146 <executable>cp</executable>
147 <commandlineArgs>daemon/HelloWorld src/main/resources/com/ur/urcap/examples /mydaemon/impl/daemon/</commandlineArgs>
148 <workingDirectory>.</workingDirectory>
149 </configuration>
150 </execution>
151 -->