Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
Forgive my noobishness, after downloading and installing Maven, how do I configure the environment variable on windows 10? From Advanced System Settings -> Environment Variables I can't relate with the interface. I don't know what to do now as I don't want to mess up my paths.
To add Maven to Windows path you have to create a new variable MAVEN_HOME=<MAVEN_PATH> and then adding this variable to the PATH/path like <PATH_PREVIOUS_VALUE>;%MAVEN_HOME%/bin;
Check http://sdkman.io/ !
They have a powershell version, awesome tool for are tools that work on JVM
I was able to edit the path instead of picking on the list as windows 10 presents it. I just clicked on "Edit Text" and it brought out the window in the old fashioned way.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
After I upgraded Mac OS Big sur, Netbeans can not open on my Mac. I click Netbeans and nothing happened. I try to fix this problem, but I failed. Now can someone help me to resolve it?
It's have issue with java path. i setup path for the java_home but it's still not working.
I uninstall and install JAVA and netbeans both but it's still not working.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I've just downloaded Netbeans 8.0.2 on Windows.
Under the "Services" tab, I was expecting to get:
Databases
Web services
Servers
Hudson...
Team...
Issue...
Instead I've got the following:
Databases
Web services
Maven Repositories
Hudson Builders
Task Repositories
Can anyone tell me why did I get this menu? What can I do to get the first menu? I'm completely new at this. Thanks.
I guess you downloaded the NetBeans Java SE Download Bundle, this one doesn't contain the server adapters.
You need the NetBeans Java EE Download Bundle from https://netbeans.org/downloads/.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am trying to install Java 8 on Ubuntu. Due to restrictions on download at my work place, I cannot install using apt-get. Hence, I downloaded the archive from Oracle's website. However, when I extracted it, there was only a file inside it. How to install using that file?
You'll no doubt have downloaded the tar file. To extract it:
tar -zxvf <file.tar.gz>
Where file.tar.gz is the file name.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Hello everyone I'm looking for method to change my default java for macbook air. I'm new user in mac and I dont know how and where to do it. I've installed Java 7 from Oracle website but when I want to run eclipse it shows alert that I need java 7 version.
Make sure that you've set your JAVA_HOME environment variable: http://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/index.html
This means put the following in your ~/.environment file:
export JAVA_HOME=jdk-install-dir
export PATH=$JAVA_HOME/bin:$PATH`
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
Not a Java person, so forgive this simple question, but on our Windows Server 2008 Enterprise server we have the following Java installations:
My understanding is that this is the JRE - shown as Java (TM) 6 Update 37 (64-bit) above I believe - and the JDK.
If I un-install the JRE will that leave the JDK intact and have no adverse effect?
Yes, you can surely uninstall and start working with JDK without any issues. Just don't forget to update JAVA_HOME and path variables accordingly.
Please refer to this page for steps of how to setup JAVA_HOME and path