How i can integration pmd in gitlab? - gitlab-ci

I didn't find any mention of this in the official documentation, but I came across an article where it says that there is a possibility, but it is not described
Does anyone have articles on this topic?
language: Apex
CI: Gitlab SaaS

Related

EKS step for new infrastructure

How do I setup EKS for new infrastructure? We are currently using KOPS to manage kubernetes which is a big problem. We would like to move to AWS EKS.
How did we get to do this?
Kubernetes is originally developed by Google, it is open-sourced since its launch and managed by a large community of contributors. So, it's better to use GKE to deploy it.
Google Cloud Platform supports easy way to deploy using Deployment Manager + Helm. You can use TerraForm to deploy if you want.
To understand step by step GKE deployment, follow three topics below:
https://codeburst.io/google-kubernetes-engine-by-example-part-1-358dc84d425b
https://codeburst.io/google-kubernetes-engine-by-example-part-2-ee1f519a32f9
https://codeburst.io/google-kubernetes-engine-by-example-part-3-9b7205ad502f
If you want to use deployment manager together with Helm, you can follow the topic below:
https://medium.com/google-cloud/gitlab-continuous-deployment-pipeline-to-gke-with-helm-69d8a15ed910
welcome to stack overflow!
You will find a super guide here: https://docs.aws.amazon.com/eks/latest/userguide/getting-started.html
I just checked KOPS docs and they apparently do AWS as well. I haven't worked with this tool before though.
Could you please describe a bit more what is the challenge? You can set up an eks cluster and then change your pipeline to go to the new one instead of the Google one.

Sonarcloud with Github Enterprise

Have tried sonarcloud with public github repositories. But how do I go about integrating it with our enterprise github repos.
Thanks
I'm a bit late for the party, but I've been researching this and found out that SonarCloud is not meant to integrate with on-premise installations, as explained on SonarSource.

RabbitMQ configuration for Wildfly

Does anyone successfully replace HornetQ by RabbitMQ in Wildfly 8?
I'm trying to use our enterprise messaging system and extract the logic of messaging from our base app server to separate the concern between messaging and our core product.
I looked on the web and did not find anything useful as how to change the standalone.xml
Any help, even if the answer is - it is not possible - would be great.
Thank you
My bounty is about to expire and I don't see help until now. So, I am answering as per my experience.
From question:
Any help, even if the answer is - it is not possible - would be great.
Don't know, but we don't need to do that. I have found a work around for that.
Answer is RUN RABBITMQ's OWN SERVER
I followed this link to install it on ubuntu server. Then I read these awesome and simple tutorials. Those six tutorials were great base to start with.
I am now integrating the project with my Java EE project which runs on Wildfly 9 server.
Best of luck to anyone who ends up here. Any constructive edits and answers are welcomed.

What is Web Logic

I am looking for WebLogic 10.3 tutorial. and when i searched in net i could not find what is Web Logic
why we have used
Please give me a simple explanation for web logic and tutorial to learn. I already tried to learn from http://docs.oracle.com/cd/E15051_01/wls/docs103/intro/chap1.html#wp1127231 but i am not clear on web logic
The author Frank Munz has an excellent book on WebLogic Oracle WebLogic Server Distinctive Recipes (Architecture, Development and Administration), for specific points.
If you're learning JavaEE , WebLogic is mostly a standard Java EE server, and many of the tutorials from equivalent software systems readily apply to WebLogic development in my experience. Look at widely-used app servers like Jetty or Tomcat, even WebSphere and you'll find there is a large StackOverflow community for supprt. For tutorials see for example DeveloperWorks http://www.ibm.com/developerworks/java/tutorials/j-tomcat/.
For tutorials about specifics of Weblogic, is certainly the right place. ORACLE might assume you're using their 'Workshop for WebLogic 10.3' product http://docs.oracle.com/cd/E13224_01/wlw/docs103/guide/introduction/conWorkshopTutorials.html
.
Could you elaborate a little about what level of tutorial you need?

BLToolkit - Current readiness for Azure

Does anybody know if BLToolkit has been tested and certified for use with Azure Sql and if it supports the dropped connection retry functionality? And if not are there any plans to get it tested and passed?
At the time of writing, there is nothing official on the BL Toolkit website, and no issues listed in their issue tracker for Azure.
There are a few other requests (e.g. here and here) that are requesting the same details. At the moment they are unanswered but you could add your weight to them.
Based on this evidence from the official sources I would say that the Toolkit is not Tested or Certified specifically for Azure use.
With the exception of the transient nature of Azure which may require handling of database reconnections, there doesn't seem to be anything obvious that would prevent you from using the Toolkit however.
I would recommend you raise an issue with the developers regarding Azure Testing and Certification while performing a proof of concept test on Azure to determine how to best handle reconnections on Azure for your specific application.
There is recent activity on the project, so I'd be quite hopeful of a response.
I wrote Azure Sql Data Provider for BLToolkit. You can find its sources on github.
Also it's available over NuGet. Please, see how to install and configure it here.