Author: kiwiwings
Date: Wed May 6 09:56:09 2020
New Revision: 1877427
URL: http://svn.apache.org/viewvc?rev=1877427&view=rev
Log:
fix findbugs packaging/url
Modified:
poi/trunk/build.xml
Modified: poi/trunk/build.xml
URL:
http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1877427&r1=1877426&r2=1877427&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Wed May 6 09:56:09 2020
@@ -47,7 +47,7 @@ under the License.
<property environment="env"/>
<!-- the repository to download jars from -->
- <property name="repository.m2" value="https://repo1.maven.org"/>
+ <property name="repository.m2" value="https://repo1.maven.org/maven2"/>
<property name="repository.pentaho" value="https://nexus.pentaho.org/"/>
<property name="main.lib" location="${basedir}/lib/main"/>
@@ -188,7 +188,7 @@ under the License.
var version = attributes.get("snapshot") || parts[2];
var repo = attributes.get("repo");
if (repo == null) {
- repo = project.getProperty("repository.m2")+"/maven2";
+ repo = project.getProperty("repository.m2");
}
var query = attributes.get("query") || "";
var jarLoc =
project.getProperty("basedir")+"/lib/"+attributes.get("usage")+"/"+
@@ -310,7 +310,7 @@ under the License.
<dependency prefix="dist.antlr" artifact="org.antlr:antlr-runtime:3.5.2"
usage="util"/>
<dependency prefix="dist.sequence-library"
artifact="de.regnis.q.sequence:sequence-library:1.0.3" usage="util"/>
<dependency prefix="findbugs" artifact="findbugs:findbugs:3.0.1"
usage="util"
- repo="https://downloads.sourceforge.net/project"
snapshot="noUpdateChecks-3.0.1" query="?download="/>
+ repo="https://downloads.sourceforge.net/project"
snapshot="noUpdateChecks-3.0.1" query="?download=" packaging="zip"/>
<propertyset id="junit.properties">
<propertyref name="POI.testdata.path"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]