-
Jenkins Could not find GradleWrapperMain
Create a Gradle project in Jenkins CI, source management with Git, and build with Gradle Wrapper
Date: 2019-08-17 View: 2203
-
Gradle Exclude commons-logging from Spring
Gradle example to exclude commons-logging from Spring frameworks.
Date: 2019-08-17 View: 2694
-
Java How to print an Array
In this article, we will show you a few ways to print a Java Array.
Date: 2019-08-17 View: 1989
-
Gradle Display test results in Console
By default, the test result will not display in the console.
Date: 2019-08-17 View: 2078
-
Gradle How to continue build if test is failed
By default, the Gradle build process will be stopped and failed if any unit test is failed.
Date: 2019-08-17 View: 2251
-
Java Mutable and Immutable Objects
This article shows you the difference between Mutable and Immutable objects in Java
Date: 2019-08-17 View: 1319
-
Debian Show apt-get package version
On Debian, you can use apt-cache policy 'package name' to check the package version.
Date: 2019-08-17 View: 1239
-
Gradle How to exclude some tests
In this tutorial, we will show you a few examples to exclude some tests in Gradle. Review the following two unit test classes
Date: 2019-08-17 View: 1600
-
Java How to join Arrays
In this article, we will show you a few ways to join a Java Array.
Date: 2019-08-17 View: 2503
-
Java 8 StringJoiner example
In this article, we will show you a few StringJoiner examples to join String.
Date: 2019-08-17 View: 1973
-
Python How to join two list
In Python, you can simply join two list with a plus + symbol like this:
Date: 2019-08-17 View: 1388
-
Java 8 Streams filter examples
In this tutorial, we will show you few Java 8 examples to demonstrate the use of Streams filter(), collect(), findAny() and orElse()
Date: 2019-08-17 View: 2607
-
Logback Disable logging in Unit Test
While the unit test is running in the IDE, the Logback is showing a lot of configuration or status like this :
Date: 2019-08-17 View: 1858
-
Java 8 Filter a Map examples
Few Java examples to show you how to filter a Map with Java 8 stream API.
Date: 2019-08-17 View: 2664
-
How to read and write Java object to a file
Java object Serialization is an API provided by Java Library stack as a means to serialize Java objects. Serialization is a process to convert objects into a writable byte stream. Once converted into a byte-stream, these objects can be written to a file. The reverse process of this is called de-serialization.
Date: 2019-08-17 View: 1570