I have a project that depends on Java Secure Socket Extension.

In this case there are three jars that make up the distribution.
jcert.jar, jsse.jar and jnet.jar.

Any objection to supporting multiple jars per dependency like below?

<dependency>
   <name>Java Secure Socket Extension</name>
   <type>required</type>
   <version>1.02</version>
   <jars>
    <jar>jnet.jar</jar>
    <jar>jcert.jar</jar>
    <jar>jsse.jar</jar>
   </jars>
   <url>http://java.sun.com/products/jsse/index-102.html</url>
 </dependency>

BTW, is type actually used for something?

-Peter

Reply via email to