Am I the only one who can't download the JAI dependencies from the new location?
I took a quick look on maven central, and there should be a jai_core dependency (note it's an underscore, not a hyphen), at version 1.1.3. But jai-codec is still under com.sun.media and it's at version 1.1.2_01. Pinaki, did you do anything special to download these dependencies? On Wed, Aug 24, 2011 at 6:37 PM, <[email protected]> wrote: > Author: ppoddar > Date: Wed Aug 24 23:37:35 2011 > New Revision: 1161319 > > URL: http://svn.apache.org/viewvc?rev=1161319&view=rev > Log: > Correct artifact id for jai libraries > > Modified: > openjpa/trunk/openjpa-project/pom.xml > > Modified: openjpa/trunk/openjpa-project/pom.xml > URL: > http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/pom.xml?rev=1161319&r1=1161318&r2=1161319&view=diff > > ============================================================================== > --- openjpa/trunk/openjpa-project/pom.xml (original) > +++ openjpa/trunk/openjpa-project/pom.xml Wed Aug 24 23:37:35 2011 > @@ -101,7 +101,7 @@ > -Djai.groupId=javax.media > --> > <jai.maven.repo>https://m2proxy.atlassian.com/repository/public > </jai.maven.repo> > - <jai.groupId>com.sun</jai.groupId> > + <jai.groupId>javax.media</jai.groupId> > <jai.version>1.1.3</jai.version> > > <nightly.version>latest</nightly.version> > @@ -338,13 +338,13 @@ > </dependency> > <dependency> > <groupId>${jai.groupId}</groupId> > - <artifactId>jai_core</artifactId> > + <artifactId>jai-core</artifactId> > <version>${jai.version}</version> > <scope>runtime</scope> > </dependency> > <dependency> > <groupId>${jai.groupId}</groupId> > - <artifactId>jai_codec</artifactId> > + <artifactId>jai-codec</artifactId> > <version>${jai.version}</version> > <scope>runtime</scope> > </dependency> > > >
