arachno7 / java-dds

Automatically exported from code.google.com/p/java-dds
GNU General Public License v2.0
0 stars 0 forks source link

Add project to Maven Central #6

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
A feature request.

Please upload this artifact to Maven Central (or to another big maven repo)
Makes automatic dependency managment much easier for this package.

Explaination on how to do so
http://kirang89.github.io/blog/2013/01/20/uploading-your-jar-to-maven-central/

(referenced in the first link)
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage
+Guide#SonatypeOSSMavenRepositoryUsageGuide-2.Signup

Original issue reported on code.google.com by the0xF...@gmail.com on 28 Dec 2013 at 5:01

GoogleCodeExporter commented 9 years ago
I both agree and disagree.

+ I can see how useful it would be...

- I'm not really sure the library is ready for production and have a place on a 
big maven repo.

= This is open for discussion

Original comment by nikla...@gmail.com on 28 Dec 2013 at 7:08

GoogleCodeExporter commented 9 years ago
It was mostly for convinience.

As far as quality goes: Plugins for ImageIO are rare as it is, and yours works 
great. I see no other ImageIO plugin for dds. 

I'm using the library activily for a modding tool so expect bugreports (if I 
find any bugs :^) )

And a few test files with special stuff (image dimensions smaller than existing 
data but within the specifications of dds etc.) if you want them.

Original comment by the0xF...@gmail.com on 29 Dec 2013 at 1:18

GoogleCodeExporter commented 9 years ago
1) I have added it to my own maven repo for convenience (that will have to do 
for now):

Added the following to your pom.xml:
<repositories>
  <repository>
   <id>maven.nikr.net</id>
   <name>maven.nikr.net</name>
   <releases>
     <enabled>true</enabled>
   </releases>
   <snapshots>
     <enabled>true</enabled>
   </snapshots>
   <url>http://maven.nikr.net/</url>
  </repository>
</repositories>

It's only 1.0.0-SNAPSHOT ATM. but, I'm going to make a 1.0.0 release soon'ish.

2) Please continue to report all the bug you find, It's very much appreciated.

3) More test files is always great. Just create a new issue and attach them, I 
will add tests for them.

Original comment by nikla...@gmail.com on 29 Dec 2013 at 2:07