Browse Source

JAI is in fact available in a nondefault public Maven repository, so use that.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@960917 13f79535-47bb-0310-9956-ffa450edef68
master
Jesse N. Glick 15 years ago
parent
commit
32c1f6a73f
1 changed files with 8 additions and 5 deletions
  1. +8
    -5
      src/etc/poms/ant-jai/pom.xml

+ 8
- 5
src/etc/poms/ant-jai/pom.xml View File

@@ -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>


Loading…
Cancel
Save