Apache Derby 10.5.1.1
The Apache Derby project is not yet publishing their latest derby-10.5.1.1 artifacts to any of the public maven repositories so I made up this short windows shell script to upload all jars to my local repository.
for %i in (*.jar) do mvn install:install-file -Dfile=%i -DgroupId=org.apache.derby -DartifactId=%~ni -Dversion=10.5.1.1 -Dpackaging=jar -DgeneratePom=true
