For deleting a Windows service in Windows CMD, you have to call 1sc delete "Service Name" This doesn't work in PowerShell, because sc is an alias for the cmdlet Set-Content in PowerShell. Deleting Windows service in PowerShell can be done by calling 1sc.exe delete "Service Name" Note, that PowerShell …
Read MoreIf you google "serverspec install ubuntu", you find the information that a package called ruby-serverspec in the standard package repository can be used to install Serverspec on an Ubuntu 14.04 LTS based system. Unfortunately, this package installs an outdated version of Serverspec. The next point is that if …
Read MoreGuest Contribution by Markus Jenderek We wanted to evaluate the new Confluence plugin LivingDoc as a replacement to Fitnesse in order to execute automated web GUI tests. Confluence 5.7.1 (Non-Cloud version) Inside Confluence HSQL In-Memory DB for evaluation purpose LivingDoc plugin 1.0.0.jar Selenium Webdriver for …
Read MoreMy Notes From Conference "Herbstcampus 2015"
Nov 22, 2015 · 1 min read · cobol conference hc15 herbstcampus herbstcampus2015 notes software architecture software documentation solid design team building technical debt ·In September I visited the conference "Herbstcampus" in Nuremberg. I took notes about some sessions, that I like to share with you. The notes are in German. SOLIDes Design - Kriterien für objektorientiertes Design by David Tanzer Wie geht's? Was geht? Wann hat es Sinn? - Portierung von COBOL-Programmen …
Read MoreGroovy is a scripting language, so it is possible to run Groovy code without compiling to Java byte code. The necessary condition is that Groovy is installed on your machine. Then, running a Groovy script in a shell looks like the following line. 1groovy TestScript.groovy Now, something is wrong with the script, only …
Read MoreIn this post I'd like to share resources that help me learning and understanding Git. Links "Getting Git Right" tutorials Interactive Git Cheatsheet git ready Collection of tips based on use cases. Article "Git ist einfach – wenn man weiß, wie" (in German) This article describes how the data model …
Read MoreLast update: 2019-11-04 I was asked some time ago, which sources I used in order to inform me about writing software documentation. This motivates me to collect all sources, that helps me, in this blog post. Most of the sources are in German. Links Arc42 Homepage: This site is about the Arc42 template. This template …
Read MoreSome weeks ago I evaluated some SSH libraries for Java. The main requirements to them are file transferring and file operations on a remote machine. Therefore, it exists a network protocol based on SSH, SSH File Transfer Protocol (or SFTP). So I needed a SSH library that supports SFTP. A research shows that it exits …
Read MoreUnit And Integration Test Reports For Maven Projects In SonarQube 4.5.1
Jan 30, 2015 · 6 min read · integration-testing jacoco maven sonarqube test-coverage test-report unit-testing ·Since SonarQube 4.2. the test report isn't generated by the Sonar Maven Plugin during a Maven build (see SonarQube's blog post) . Therefore, the test report has to be generated by another plugin before Sonar Maven Plugin collects the information for the SonarQube server. Here, Jacoco Maven Plugin can help. It has the …
Read MoreI use Vagrant together with VirtualBox on an Ubuntu based Linux system. Because my internal SSD drive isn't so large, I outsource the location of VirtualBox's VMs to an external HDD drive with a NTFS partition. Additionally, I set Vagrant's environment variables VAGRANT_DOTFILE_PATH and VAGRANT_HOME so, that the …
Read More