I am willing to join an open source project. Which is the best place and what is the method to join an open source project?
I am looking for a one based on java
I am willing to join an open source project. Which is the best place and what is the method to join an open source project?
I am looking for a one based on java
A practical, short roadmap for joining Java open‑source projects that builds on suggestions already posted by , and the reviewer notes from .
Pick a project by signals, not by popularity alone: recent commits and merged PRs, a readable README with prerequisites and build instructions, a license that allows contributions, a small test suite, and a labeled issue backlog (labels like "good first" or "documentation" are ideal). For Java projects specifically, check the build files (pom.xml, build.gradle) to confirm the toolchain and run the test suite locally before proposing changes.
A reliable first-contribution workflow:
Example minimal git / build steps:
git clone <repo-url>
cd repo
git checkout -b fix/brief-description
# implement change
git add .
git commit -m "Fix: brief description"
git push origin fix/brief-description
# Maven
mvn clean test
# Gradle
./gradlew clean test Advice for maintainers and owners (relevant to and others): make the project easy to join — ensure the master branch builds, add a clear README and CONTRIBUTING.md, create a few labeled "starter" issues, and add automated CI so new commits run tests. New contributors such as should look for doc, test, or small bug tickets first; maintainers like who posted project offers should call out exact setup steps and a first‑timer ticket to attract help.
Jump to Post— pritaeas 2,276Or sourceforge.net or bitbucket.org
Jump to Post— peter_budo 2,532Quick peek on the project and what I found:
- Broken build, your application class Database is broken. Make sure that before you commit you always check that project copiles and run. Broken builds are bad advertisment
…
Im working on a Java EE (Servlets) based Issue Tracker if you want to help....
Im working on a Java EE (Servlets) based Issue Tracker if you want to help....
Sorry, but I don't know much about JSP and servlets.
Im working on a Java EE (Servlets) based Issue Tracker if you want to help....
If open source then drop link, I would be interested to see what you have :)
I want to join it,I want more information,can anybody help me out?
I want to join it,I want more information,can anybody help me out?
what kind of project you like to join in, please also tell your expertise. I am working on one, if I find you useful for my project then i would like to include you in it.
if you have some public repository can you post the link? People may want to have look first before attempting to join ;)
@warlord902 if you have some public repository can you post the link? People may want to have look first before attempting to join ;)
I am working on a kind of a multi-protocol chat application in Java.
Here is the link to it
http://sourceforge.net/projects/crony/
and here is the svn repository
http://crony.svn.sourceforge.net/viewvc/crony/
Quick peek on the project and what I found:
Please do not take it personally, I just trying to give you some feedback so you can improve your work :)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.