Questions tagged [run-configuration]

Run configurations enable a user of an IDE such as IntelliJ or Eclipse to save repeatable actions performed within the IDE. They can be viewed as a macro, but with the limitation of only using functionality recognized by the specific IDE it is created in.

158 questions
6
votes
0 answers

RubyMine RSpec run configuration with Dockerized Zeus

Context I'm Dockerizing the development environment for a legacy Rails monolith, using a Dockerfile written for local env + docker-compose using that image to start different services. Goal I would like to run specs from RubyMine with just…
thilonel
  • 61
  • 2
6
votes
1 answer

Where does IntelliJ IDEA keep run/debug configurations?

Intellij IDEA will automatically create a run/debug configuration when you run any item that doesn't have a permanent run/debug configuration already present. You can then save the run/debug configuration that was generated to make it…
LightCC
  • 9,804
  • 5
  • 52
  • 92
6
votes
1 answer

Button "Ok" not being selected when choosing main class intellij IDEA

I am trying to run a program in the run configuration I am creating, the button "OK" is not being selected when I choose the main class... Here's a image of the problem : Anyone can help ? Thank you in advance !
akari
  • 617
  • 1
  • 11
  • 32
5
votes
6 answers

IntelliJ Idea + cucumber run configuration: how to exclude @tags

Good news everyone. I don't know how to exclude several tags within my run configuration for Cucumber project. For instance, i have three tests. @debug Scenario outline: foo 1 When step Then step @obsolete Scenario outline: foo 2 When step Then…
Alexander.Iljushkin
  • 4,519
  • 7
  • 29
  • 46
5
votes
1 answer

Change remote glassfish server port in Netbeans 7.3

how can I change the default port 8080 when creating a new remote server instance in Netbeans 7.3? The common way to change this for local glassfish instances is to edit the domain.xml file. But this doesn't work for remote instances. I even changed…
Marcel
  • 71
  • 1
  • 4
4
votes
1 answer

Gradle Android studio output folder when debug

I'm trying to set the destiantion folder depening on Debug or release mode. But I not really succesfully. For debug and release it always goes to debug folder. And if I remove the debug config then it goes to release folder, but both of them…
Marcel
  • 2,094
  • 3
  • 23
  • 37
4
votes
1 answer

Eclipse - No server found in Run Configurations

I'm having a trouble: I've got a GlassFish Server configured in Eclipse. Now, I need to add a project to its classpath: I go to Run Configurations -> Glassfish -> "Glassfish 3.1.2. at localhost" (the current server). Now, as you can see from the…
andreaxi
  • 931
  • 5
  • 15
  • 28
3
votes
1 answer

IntelliJ Ultimate + Tomcat does not open browser on run

I think, first of all, its not an issue with configurations or other basic stuff (at least I think it is not) - I followed this tutorial: http://wiki.jetbrains.net/intellij/Creating_a_simple_Web_application_and_deploying_it_to_Tomcat Basically…
Christian Ruppert
  • 3,749
  • 5
  • 47
  • 72
3
votes
1 answer

How to start an Activity in a dynamic feature module?

When typing to start an Activity within a dynamic feature module trough an Android Studio run-configuration, I get the following warning: The activity 'SomeActivity' is not declared in AndroidManifest.xml. (because it is being declared in the…
3
votes
1 answer

Intellij not detecting runConfigurations xml

I imported a simple sbt scala project in Intellij idea. Once the project is imported, I create runConfigurations directory inside .idea directory and moved all the checked in runConfigurations inside .idea/runConfigurations. Still I am not able to…
mogli
  • 1,549
  • 4
  • 29
  • 57
3
votes
1 answer

Running an Android activity with an intent

I have an activity that requires a parameter be passed as an intent extra when the activity is started. Is there any way I can set a demo parameter from a run configuration to allow me to to run the activity from Android Studio without creating a…
RedBassett
  • 3,469
  • 3
  • 32
  • 56
3
votes
1 answer

Run bash script from IntelliJ as root

I have a bash script which needs root privileges. I run it by sudo ./script.sh. I would like to create run configuration in IntelliJ IDEA, that runs this script with root privileges. It doesn't matter if it asks for password later. Is it possible…
koto
  • 720
  • 2
  • 9
  • 29
3
votes
0 answers

How to convert IntelliJ Idea run configuration into Eclipse launch file?

I know that there is a plugin for IntelliJ Idea called "Eclipser" that converts Eclipse launch files into IntelliJ Idea run configurations. I would like to have the opposite conversion: from Idea run configuration to Eclipse launch file. Is there a…
DeGriz
  • 318
  • 3
  • 15
3
votes
1 answer

Android AVD Incompatibility

When I try and run an Android AVD, the emulator doesn't run my app. I've gone into run configurations, and gone to target device to set a preferred AVD to run. Each AVD I select I get an error saying: 'Nexus 4' may be incompatible with your…
user4307551
3
votes
1 answer

How run all tests for class in Intellij Idea?

I can open a java class in Intellij Idea, press ctrl + shift + t and see list with test classes associated with the class. Is there a way to run all tests in this list? P.S. Without opening run configuration window and manually adding all classes…
Cherry
  • 31,309
  • 66
  • 224
  • 364
1
2
3
10 11