java
Migrating Maven Namespace to Central Portal
Step-by-step instructions how to migrate your Maven Namespace and update your CI
java
Step-by-step instructions how to migrate your Maven Namespace and update your CI
aws
I've recently covered how to deploy a Node JS based Lambda using SAM and Buildkite. I would say that this should cover most use cases, since I believe a majority of AWS Lambdas are implemented with JavaScript. However, Lambda supports many more programming languages than just JavaScript and
maven
I cannot count the times I have looked up the following through Google. Thus I decided to put together a few handy parameters (or properties or whatever is the correct term) for Maven builds. All the below are given with the goal install but they can safely be used with
maven
Maven creates and checks MD5 checksums at various times. For instance, when downloading an artifact from a repository, Maven checks whether the checksum of the downloaded files (e.g. POM, JAR) is correct. I am uploading Maven artifacts manually to a very simple, file-based repository. This requires me to calculate
eclipse
Xtend is currently my favourite alternative language for the JVM (closely followed by Kotlin). Unfortunately, I did not find a good guide of how to set up a Maven project within eclipse (Luna) which uses Xtend. Specifically the following guide will allow you to allow you to write test cases
gradle
Problem You are using Gradle to build your Android Studio project and you have linked Maven SNAPSHOT modules. When you build your project, Gradle/Android Studio does not grab the latest version of the SNAPSHOT module but instead uses a cached version. Solution Add the following to your build.gradle:
eclipse
As of August 2014, don't even try this. Officially, the Google Eclipse plugin supports Eclipse 4.4 (Luna) at present. However, in order to be able to create projects which are both Maven projects and Android projects you will need to install the m2e-android plugin. This currently does
maven
Problem You would like to deploy a Java Maven project you are developing using the Netbeans IDE to your Maven repository. Solution Right click on your project in the Netbeans 'Projects' view and select the Custom / Goals … in the drop down menu as shown below. Type 'deploy&
jenkins
Problem The build of a Maven job in Jenkins fails due to a StackOverflowException or a OutOfMemoryException during a JUnit test. Analysis Most likely, there is a bug in your application, which leads to infinite recursion or an infinite allocation in resources. So first try to run your test in