• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Java based open source bug/issue tracking tool

 
Ranch Hand
Posts: 129
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know about any Java based open source bug/issue tracking tool. I am looking for a tool which should be a desktop application and not web based. Please help me in finding such a tool.
 
Sheriff
Posts: 22796
131
Eclipse IDE Spring Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you tried Sourceforge.net?
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Or maybe http://java-source.net/
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Nothing GUI related here.
Moving to more appropriate forum
 
Saloon Keeper
Posts: 28067
198
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Desktop-based issue trackers are out of favor. Since bug/issue tracking is by its very nature something normally done among a group of people using separate computers, it's a natural for a client-server implementation. And these days, there's rarely a compelling reason for writing a standalone client-server app when the web browser is already installed. Quite the opposite, since keeping client software installed and up-to-date is a drain on the corporate infrastructure.

Trac is a very popular tool for issue management. It's even available as a VM appliance, so you don't have to do a lot of complex setup work. Jira isn't open-source, although, like IntelliJ, they often make it available at no cost for people who are themselves working on open-source projects.

Jira itself is written in Java and uses a fair amount of open-source code internally (their free licenses are a way of returning the favor). Since it's closed-source, the only parts of the product that you actually can see source code for are the open-source inclusions. I forget what Trac is written in. It is open-source, however.
 
Grow a forest with seedballs and this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic