Blog Archives

Meet the IoT, Dependency Management, the local Eclipse Community and more at the DemoCamp Luna in Stuttgart!

On July 2nd, the Eclipse DemoCamp for the Luna release train will take place at the Stuttgart University, Vaihingen campus. You will see demos on several Internet-of-Things projects, including HTML5 device UIs build with Franca, using MQTT and Paho to connect Webpages, and an extensible C for developing embedded software. In addition, there will be […]

Eclipse DemoCamp Kepler in Stuttgart on 2013-07-17 17:00

At Wednesday, July 17th, itemis sponsors this year’s Eclipse DemoCamp in Stuttgart. All details can be found at the Eclipse Wiki. We’ll start at 5 pm at the Ibis Styles Hotel in Bad Cannstatt. We could compile an agenda from a wide variety of topics, reaching from cloud-supported code recommendations and enterprise OSGi adaption through […]

Merge Text Files with Ant

Apache Ant has lots of useful built-in tasks. However, a task for merging text files is not among them. Fortunately, we can combine some built-in tasks to achieve this goal. Below, you’ll find the macro along a simple demo: 123456789101112131415161718192021222324252627282930313233343536<project default="merge-demo"> <target name="merge-demo">     <merge tofile="merged.txt">         <sourcefiles>       […]