Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to commit a file in a repository using Java Program. I am using Subversion and we use Subclipse plugin along with STS 3.4 and JDK 7. Is it possible to commit files programmatically using Java?
You can try one of the clients available like SVKit http://svnkit.com/ which provide api to talk to svn repositories.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
We have a console program that checks all .java files in a project for some common mistakes. It Reads the source code as plain text. We'd like to transform it to a maven plugin that is run when pushed to gitlab in the CI pipeline
There is a description of writing Maven plugins here:
https://maven.apache.org/guides/plugin/guide-java-plugin-development.html
You need to use the packaging maven-plugin and extend the AbstractMojo class.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am only starting programming on Java and want to decided to create a simple Java Web Application. I've read that the maven and tomcat is needed(I've already installed tomcat), pls help me.
Install homebrew (https://brew.sh/) then brew maven. But IntelliJ already comes with maven, so if you work only with IntelliJ, maybe you do not need to download maven at all. You can simply use maven that is bundled with IntelliJ..
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Currently my project uses java 1.7 and we have requirement to upgrade it to 1.8.
what are the key points i have to consider before estimating the hours?
Just try to update already and see what is breaking before coming up with an estimate.
There may be no work at all.
Dependencies
Build setup
Custom JVM parameters
It might work just after an update, it might take a month. Depending on your project.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
If I have a Java web project on github, is it possible to create a github page from the source files? Something like this (How is posible add several javascript libraries to main html?).
You can't run your Java application on GitHub. For this purpose you need an application server, for example Tomcat, Glassfish, or Wildfly. Github gives you the opportunity to show only HTML pages with JavaScript.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to check whether a browser is installed on my machine using Java. That is I want to check whether Firefox,chrome etc is installed through my java code.
I don't think that is possible unless you have to scan through the OS directories e.g. in program files and check for browser excutable files. You might also as well run into permission problems.