Does anyone know GUI apps that are uploaded to Mav...
# graviton-browser
m
Does anyone know GUI apps that are uploaded to Maven? I know it's mostly libraries, but sometimes there are full programs there too. Any artifact with a main class declared in the manifest would be useful
o
You can upload one to bintray?
k
Copy code
<dependency>
    <groupId>net.sourceforge.findbugs</groupId>
    <artifactId>findbugsGUI</artifactId>
    <version>1.3.2</version>
</dependency>
It won't run by itself though... There's a main class in the manifest, but there must be some other dependencies needed on the classpath.
m
thanks!
interesting - usually i can specify LATEST as the version to get the latest version, but with findbugs that doesn't work
i wonder if it's missing some metadata file
spotbugs gui works