Skip to content
Advertisement

Tag: maven

Run custom TextSecure (Signal) server

I am trying to start my custom TextSecure (Signal) server. I want to use it for all functions that Signal has (both SMS and telephony). I believe that I also need redphone server to run telephony. I’ve found github repos for TextSecure server only https://github.com/WhisperSystems/TextSecure-Server but no repos for redphone server. I think that I also need to run this

unable to run Htmlunit application using Maven dependency

I have added Htmlunit Maven dependency by adding the following to my pom.xml When I am trying to run the application, I am getting the following error: The following is my pom.xml, as my pom.xml is very lengthy I have removed some of the sections like properties, profiles, etc. Answer You need to remove the direct HttpClient dependency, because it

Nexus & Maven Corporate Pom – What should it contain?

We are currently evaluating to establish an internal company nexus repository for our java development. Unfortunately there are still some questions unanswered, but maybe you can help. A parent pom for all projects inside the company seems to be best practice. What is not clear is what this pom should contain, besides the <organization>section. Is it best practice to also

Exception while trying to run java program from maven

I have a small java program that connects to a mysql db and reads data from it. I am able to run it successfully using java -cp but when I try to run it using mvn exec:java I get this exception after the program has finished: Why is this happening and how can I fix this? Here is my code

Ways to make maven build faster?

I have a multi module java project. Maven takes almost around 40 secs to build it. I have tried maven with multi threaded builds too by specifying -T and -C args for no of threads and cores to be used. But I haven’t seen any significant improvement in wall time of my builds. I am using maven 3.2.3 and sometimes

Advertisement