project

Testers in Software Development [closed]

与世无争的帅哥 提交于 2019-12-03 12:11:27
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 years ago . In my company we develop a software product. Until now we haven't had any testers, so basically the developers were the testers, and of course the customer and users (not good). Our team now consists of 4 developers and we work mainly with Cruisecontrol, Flex, ASP.NET, IIS,

How do I “register” a new Module Type in an IntelliJ Plugin?

爷,独闯天下 提交于 2019-12-03 11:45:43
I am a beginner when it comes to IntelliJ plugin development but i want my plugin to register a new Module Type in the "New Project" / "New Module" windows. I already searched through the Documentation for plugin developers but wasn't able to find anything useful. I also looked at existing plugins like Kotlin and Scala which also add new Module types but I can't figure out how to get a finished ModuleType to show up in the dialogs mentioned above. What do I have to change in the plugin.xml file? I already added extensions and created java classes for ModuleType, ModuleBuilder and the

Android Studio - automatic project load

一曲冷凌霜 提交于 2019-12-03 11:27:24
问题 I cannot find a way to prevent Android Studio from automatically loading the last project in use. I want it open me the beggining window with the list of projects available and not loading the last used automatically. 回答1: The location of Reopen last project on startup was moved to Settings => Appearance & Behavior => System Settings with new Android Studio, just uncheck it! 回答2: In Appearance & Behavior -> System Setting , also you can change some other setting about open or save projects

Intellij project view: not show multiple classes in same file

安稳与你 提交于 2019-12-03 11:00:38
One frustrating thing I find in Intellij's project view is that it shows all the classes in a file instead of just the class for which the file is named. The problem with this is that to open a file I have to double click twice: once to expand the file and show the classes in the file, and then a second time to actually open the file. In most cases I don't want to see the classes inside of a file. I just want to see the file in the project view and when I double click on the file I want to open the file, not drill down into its structure. Is it possible to configure my UI this way? UPDATE:

How do you exclude a transitive project dependency in gradle

丶灬走出姿态 提交于 2019-12-03 10:26:40
given dependencies { compile project(':subproject') { transitive = false } } This does not work properly in gradle 1.3. (i.e. all dependencies are included from the subproject) Is this a bug or is there a different syntax for excluding project dependencies? The shown syntax will add a new (so-called dynamic ) transitive property to the Project object, which, unless used somewhere else, won't have any effect. You'll get a warning that dynamic properties have been deprecated, which is a sign of a potential mistake in the build script, and will fail hard in Gradle 2.0. The correct syntax is (as

In a software project, how would you differentiate a Component from a Module? [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-03 10:03:12
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . In a software, how would you differentiate a Component from a Module? 回答1: I would say that the answer depends on who you ask. I think of the difference as being one of granularity and role. A software component to my understanding is a self-contained entity with a well

Organization of files in Code Blocks

馋奶兔 提交于 2019-12-03 09:32:28
问题 I am currently working on a medium/large project on Code::Blocks and I am wondering how to organize my files. First, it seems that creating "virtual folders" in Code::Blocks is quite natural but then on disk, all files are in the root folder of the project and it seems messy for me : if I want to do something outside of Code::Blocks, files are then hard to find. Should I use this method anyway ? Then if I create "real" folders every time I need them, I need to add them to the path in order

How to convert IntelliJ project to Eclipse?

我们两清 提交于 2019-12-03 09:25:58
I have one IntelliJ project and I want to open it in Eclipse, so what should I do? There is an export to eclipse option in Intellij Under file menu. This option will generate you the necessary .project and .classpath files that will be used by eclipse. Personally, I would remove any IDE dependencies using some dependency management systems like Maven or Apache IVY. ( Is system the right term?) I had the same issue and (I don't have Intellij) but doc_180's comment pointed me in the right direction. Here is a simple solution. In Eclipse create a new blank Android project. Copy the .project and

Alternatives to Python PasteScript's paster create?

老子叫甜甜 提交于 2019-12-03 09:19:43
问题 It seems like PasteScript's paster create functionality is just about the only widely used framework for building/generating a project skeleton within python. I'm wondering if there are any alternatives in the python world that folks use? Update I want to comment on my experience since originally asking this question. The accepted answer still stands - there are a number of templating/skeleton packages out there one could use. However, from the other answers given, I did start to use mr.bob

How to use Mercurial, Maven and Eclipse together?

吃可爱长大的小学妹 提交于 2019-12-03 08:29:53
I am currently working on a Java project within a team of 5 colleagues for university. Actually, we will finish the planning phase within the next few days and then start implementing. For the project, we have to use Mercurial (via Bitbucket.org) and Apache Maven. We'd like to use Eclipse as IDE. I know how to use Mercurial, and I've read some articles and guides about Maven. The thing I don't understand is how we should use those tools in collaboration. What should be placed on the repository? The whole Eclipse project? Or just the source files and Maven's pom.xml? If the latter, how would a