You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jg...@apache.org on 2010/07/06 17:33:47 UTC

svn commit: r960917 - /ant/core/trunk/src/etc/poms/ant-jai/pom.xml

Author: jglick
Date: Tue Jul  6 15:33:47 2010
New Revision: 960917

URL: http://svn.apache.org/viewvc?rev=960917&view=rev
Log:
JAI is in fact available in a nondefault public Maven repository, so use that.

Modified:
    ant/core/trunk/src/etc/poms/ant-jai/pom.xml

Modified: ant/core/trunk/src/etc/poms/ant-jai/pom.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/etc/poms/ant-jai/pom.xml?rev=960917&r1=960916&r2=960917&view=diff
==============================================================================
--- ant/core/trunk/src/etc/poms/ant-jai/pom.xml (original)
+++ ant/core/trunk/src/etc/poms/ant-jai/pom.xml Tue Jul  6 15:33:47 2010
@@ -35,8 +35,6 @@
   <version>1.8.2-SNAPSHOT</version>
   <name>Apache Ant + JAI</name>
   <description>image task and corresponding types.
-  jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided
-    the download URL is http://java.sun.com/products/java-media/jai/
   </description>
   <dependencies>
     <dependency>
@@ -49,15 +47,20 @@
       <groupId>javax.media</groupId>
       <artifactId>jai-core</artifactId>
       <version>1.1.3</version>
-      <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>jai</groupId>
+      <groupId>com.sun.media</groupId>
       <artifactId>jai-codec</artifactId>
       <version>1.1.3</version>
-      <scope>provided</scope>
     </dependency>
   </dependencies>
+  <repositories>
+      <repository>
+          <id>jboss</id>
+          <name>JBoss</name>
+          <url>http://repository.jboss.org/maven2/</url>
+      </repository>
+  </repositories>
   <build>
     <plugins>
       <plugin>