Use https for repo1.maven.org

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1873819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2020-02-09 08:05:16 +00:00
parent 1791a4e61d
commit d5ba6195a5
2 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ def triggerSundays = '''
H H * * 0
'''
def xercesUrl = 'http://repo1.maven.org/maven2/xerces/xercesImpl/2.6.1/xercesImpl-2.6.1.jar'
def xercesUrl = 'https://repo1.maven.org/maven2/xerces/xercesImpl/2.6.1/xercesImpl-2.6.1.jar'
def xercesLib = './xercesImpl-2.6.1.jar'
def poijobs = [

View File

@ -1,5 +1,5 @@
<?xml version="1.0"?>
<!--
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
@ -25,7 +25,7 @@ under the License.
<property name="bundle.lib" location="osgi/lib"/>
<!-- TODO Import these from the parent build file -->
<property name="repository.m2" value="http://repo1.maven.org"/>
<property name="repository.m2" value="https://repo1.maven.org"/>
<property name="version.id" value="4.1.2-SNAPSHOT"/>
<property name="dist.dir" value="build/dist"/>
@ -54,13 +54,13 @@ under the License.
<target name="bundle" depends="init, check-bundle-jars, fetch-bundle-jars">
<taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="${bundle.bnd.jar}"/>
<mkdir dir="build/osgi"/>
<bnd
<bnd
classpath="${dist.dir}/poi-${version.id}-${DSTAMP}.jar,${dist.dir}/poi-scratchpad-${version.id}-${DSTAMP}.jar,${dist.dir}/poi-ooxml-${version.id}-${DSTAMP}.jar"
eclipse="false"
failok="false"
exceptions="true"
eclipse="false"
failok="false"
exceptions="true"
output="build/osgi"
files="test.bnd"/>
files="test.bnd"/>
<!-- TODO Include the settings from http://svn.apache.org/repos/asf/servicemix/smx4/bundles/trunk/poi-3.9/pom.xml -->
<!-- TODO Make this actually spit out an OSGi Jar -->
</target>