Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm trying to find big open source projects that use Gradle as a build system. I found only Grails, Spring, Hibernate.
Are there any others?
There are many others. Some that I can recall off the top of my head:
Many projects in the Spring IO platform (not just the Spring framework)
Tapestry
Groovy
Griffon
Qi4J
All Netflix open-source projects
Some more popular projects that use Gradle: Groovy, Mockito and of course Gradle itself :)
And in my point of view the most important one: Android SDK uses Gradle in newer versions to build apps!
Edit: But there are also big companies that use it. You can see some if you go to the Gradleware website and scroll to the end of the page.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a java open-source project that is multithreaded, has database persisting and a web part and that doesn't contain any unit tests. It also mustn't be bigger than 100 classes. I want to write the tests for such a program.
Thank you in advance!
You can find open source projects source at below locations -
Google Developers
Java forge
code google (for small projects)
You can find opesource projects at:
sourceforge
github
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm using Netbeans IDE for develop mobile application J2ME. Now i'm switchover to android app development. I configured android in netbeans and developed small application.But most of my friends suggest me to use eclipse IDE.I don't know whether continue netbeans or move to eclipse.Which is the best IDE for developing of standard android application?
Eclipse is an IDE VERY similar to Netbeans and also quite easy to install with this bundle.
The reason why Eclipse is better is because it has official support from Google. Netbeans plugins are made by community, not the official android staff.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone suggest me a good, easy-to-use, FREE load testing tool that I can download easily & use? I'm using Java 1.4.
Thought I'd use JMeter, but it seems it requires Java 1.6 and some additional configuration settings.
Any other suggestions?
Thx
Depends on what exactly you want to load test.
If you want to load test webpages then JMeter is a good bet. And I think Jmeter works with 1.5 too.
You could run an older version of The Grinder. Pretty sure version 2 can run on 1.4.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any tool that helps analyse code structure in a java project, either as an eclipse pluggin or as a standalone?
I guess something similar to what Structure101 seems to do, but I am looking for something free.
I.e. to visualize dependencies among jars, classes, class-hierarchies etc.
It is mostly to understand an existing code-base faster, rather than set coding rules or profile etc.
I've found the following tools useful
CodePro Analytics - http://code.google.com/javadevtools/codepro/doc/index.html
JDepend - http://www.clarkware.com/software/JDepend.html
Sonar - http://www.sonarsource.org/
Metrics - http://metrics.sourceforge.net/
you mean like Sonar?
Tons of them. The thing is you probably want to google for the kinds of tests, eg, "McCabe complexity java" or "test coverage java".
You might have a look at this wikipedia article.
Update
Aha. Try depfind.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a Java open source project for an academic study on test cases.
I need a project with 20-40 KLOC and at least a 100 JUnit tests.
A project that was developed using TDD methodology is prefered.
Something that I can drop in eclipse and run all the tests with minimal overhead for setups.
Any recommendations?
It's amusing that you say "drop in eclipse", as some parts of eclipse were written with TDD and have relatively large numbers of LOC. You may want to go that route. I know, for example, that the Eclipse-based FORTRAN IDE project is one such endeavor.
The Spring framework? May be too large perhaps.
There are any number of projects you can use. You could look at the BouncyCastle encryption library.
http://bouncycastle.org/java.html
To help with your search, you could have a look at Koders (http://koders.com/), the source code search engine. They have information about LOC for open source projects.