Seems there is some monkey business going on at jaspersoft. See here and here for details.
Quick Solution is to just add this repo setting to your pom
jaspersoft http://www.jasperforge.org/maven2 false false
/** * http://www.coderanch.com/t/295768/JDBC/java/inserting-large-file-CLOB-Oracle * @param clob * @param value * @throws Exception */ public void insertClob(oracle.sql.CLOB clob, String value) throws Exception { try { OutputStream outstream = clob.getAsciiOutputStream(); outstream.flush(); outstream.write(value.getBytes()); outstream.close(); } catch (Exception e) { e.printStackTrace(); } }
create org.hibernate.dialect.DerbyDialect true 'T', false 'F' true 5 20 600 50 false com.xx.xx.common.index.entity.CellEntity
com.xx.xx.common.index.entity.APNEntity
CELL
APN
mvn install:install-file -Dfile=restfb-1.5.3.jar -DgroupId=com.restfb -DartifactId=restfb -Dversion=1.5.3 -Dpackaging=jar -DgeneratePom=true
com.restfb restfb 1.5.3
mvn install:install-file -Dfile=lib/appengine-tools-api.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=1.3.6 -Dpackaging=jar -DgeneratePom=true mvn install:install-file -Dfile=lib/shared/appengine-local-runtime-shared.jar -DgroupId=com.google -DartifactId=appengine-local-runtime-shared -Dversion=1.3.6 -Dpackaging=jar -DgeneratePom=true mvn install:install-file -Dfile=lib/user/appengine-api-1.0-sdk-1.3.6.jar -DgroupId=com.google -DartifactId=appengine-sdk-1.3.6-api -Dversion=1.3.6 -Dpackaging=jar -DgeneratePom=true mvn install:install-file -Dfile=lib/user/orm/datanucleus-appengine-1.0.7.final.jar -DgroupId=org.datanucleus -DartifactId=datanucleus-appengine -Dversion=1.0.7.final -Dpackaging=jar -DgeneratePom=true mvn install:install-file -Dfile=lib/shared/appengine-local-runtime-shared.jar -DgroupId=com.google -DartifactId=appengine-local-runtime-shared -Dversion=1.3.6 -Dpackaging=jar -DgeneratePom=true mvn install:install-file -Dfile=lib/shared/jsp/repackaged-appengine-commons-logging-1.1.1.jar -DgroupId=com.google -DartifactId=repackaged-commons-logging -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
http://www.google.com/codesearch?q=file:java+%22com.aetrion.flickr.Flickr%22&hl=en&btnG=Search+Code
mvn install:install-file -Dfile=flickrapi-1.2.jar -DgroupId=com.aetrion.flickr -DartifactId=flickrapi -Dversion=1.2 -Dpackaging=jar
com.aetrion.flickr flickrapi 1.2
#!/bin/sh
JARDIR=$1
CLASS=$2
echo "Looking for class name `$CLASS` in directory $JARDIR"
for i in `find $JARDIR -name "*jar"`
do
echo "Looking in $i ..."
jar tvf $i | grep $CLASS
done
alias findinjars='~/poconnell/tools/scripts/findinjars.sh'