Ruby Netbeans plugin can't install - ruby

Some plugins require plugin org.jruby.jruby to be installed.
The plugin named org.jruby.jruby is needed and not found. The following plugin is affected:       Ruby Projects
Where is org.jruby.jruby? I select all.

When you select your plugins from the unzipped folder, make very sure to change the "Files of Type" filter to "All", so that you can include the JRuby JAR
https://blogs.oracle.com/geertjan/entry/ruby_on_rails_in_netbeans

Download Ruby and Rails plugin from here
Unzip the downloaded file
Open NetBeans > tools > Plugins > Downloaded > Add Plugins..
Go to downloaded location and make files filter to All Files
Select all files and setup, IDE will restart and work for you

Related

Installing Gradle manually on Intellij

How do I install downloaded Gradle for Windows OS on Intellij? I've tried to unzip the folder then copying it in a Gradle folder I created on Local Disk C, I've also added the path in the Enviroment Variables but still not working.
If you want to create a new project follow these steps:
Launch IntelliJ and select the "New project" option, you should see Gradle appearing on the left hand side option bar
Specify the JDK and maybe some Frameworks

Gherkin highlighting and behat integration with Netbeans 8.0

Is there anyone who has a decent working solution to integrate Netbeans 8.0 with behat, in terms of code highlighting and code-completion.
I saw that there exists the Cetriolo plugin which is unfortunately not available for Netbeans 8.0.
Has anyone found a workaround on this?
I would suggest this plugin for NetBeans that works also for version 8.x
http://plugins.netbeans.org/plugin/17939/cucumber-features
Some more details to #Ferie's answer:
I indeed could not install Cetriolo on Netbeans 8.2.
Instructions to install Cucumber Features manually (since automatic installation is not available):
Download the .nbm file by clicking on the "Download" button on http://plugins.netbeans.org/plugin/17939/cucumber-features
In Netbeans, go to Tools > Plugins > Downloaded > Add Plugins... and open the .nbm file.
Click Install
After restarting Netbeans, you should see syntax highlighting in .feature files.
Here's a feature request for Netbeans to include Behat support out-of-the-box:
https://netbeans.org/bugzilla/show_bug.cgi?id=226804

How can I use a installed version of Maven with eclipse

I have downloaded Apache-Maven-3.0.4 in zip format and extracted to a directory called My Documents\Software.I have set Path variable to point to the Maven\bin directory.Now when I am checking from command prompt mvn command is working only inside Maven\bin directory.
I want to use Maven with eclipse.Do I have to download eclipse m2e plugin separately or can I make use of the already installed Maven-3.0.4. If I install eclipse m2e plugin where can I find installed m2e plugin ?
In which directory should I put my project to mvn package command to work?
This may sound silly,but I am new to Maven.Please help.
Go to window->preference->maven->installation.
click on Add. Here, you can specify external maven installation, rather internal.
But you need to install m2e plug-in for this.
are you using my eclipse or simple eclipse???
there is an option when u right click on project to add maven capabilities
look at this tutorial...find configure option on right click
link
Regards
Anshul Katta

Maven location (when installed indirectly with Netbeans/Glassfish)?

Where is the maven home directory when you install Netbeans with Glassfish? I have searched for 'mvn' in the Program Files directory and my user directory in Windows 7 but it turns up nothing.
In the Maven settings in Netbeans for 'Maven Home' it says 'Bundled' which isn't much use to me, I need the actual path to maven.
First install maven separately (and verify it by running mvn command line) and then open netbeans and navigate to Tools -> Options -> Java -> Maven (I guess you already know that but just in case) and change the 'Maven Home' path to the directory where maven is installed.
The Bundled maven could generally be found at NetBeans_install_directory/java/maven.
Example For Mac:
/Applications/NetBeans 8.2.app/Contents/Resources/NetBeans/java/maven/
Example For Windows:
C:/Program Files/Netbeans 8.2/java/maven/
Not sure what version you downloaded back then, but with version 7.3, maven is found here:
C:\Program Files (x86)\NetBeans 7.3\java\maven\
In Mac OS it is in
/Applications/NetBeans/NetBeans 8.0.2.app/Contents/Resources/NetBeans/java/maven/bin
I know its an old question but still there's also another way of seeing where mvn is installed on your Netbeans.
When you clean and build your project you can see in the console output the location of maven used. See the red circle in the screenshot /home/<user>/netbeans-8.2/java/maven/bin/mvn
The maven bundled with NetBeans located at
% NetBeans Installation Location %\java\maven
Eg: C:\Program Files\NetBeans 8.2\java\maven\bin

How to use downloaded version of andromda to create and compile Project?

I am creating andromda project using following command
mvn org.andromda.maven.plugins:andromdapp-maven-plugin:3.4-SNAPSHOT:generate
This generates project using the latest version of andromda and using Web. I wish to create and compile andromda Project using downloaded andromda directory jars or binaries. Is it possible??? If yes then how??
To do this download the binaries of andromda version and run mvn install through command line in the main folder of downloaded andromda project. It will start to build and will put all the jars in maven repository. Now when generating the project you have to pass the version of the andromda whose binaries you have built. It will go directly to maven repo.

Resources