Skip to content

Commit

Permalink
made default urls HTTPS
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Rueger <[email protected]>
  • Loading branch information
chrisrueger committed Apr 7, 2024
1 parent 4ca991d commit 0cafeea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bndtools.core/_plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@
<property name="name" type="string" description="The name of this repository" default="Maven Repository" />
<property name="releaseUrl" type="string" description="The urls to the remote release repository." default="https://repo.maven.apache.org/maven2/" />
<property name="stagingUrl" type="string" description="The url of the staging release repository." />
<property name="snapshotUrl" type="string" description="The urls to the remote snapshot repository." default="http://repository.apache.org/snapshots/" />
<property name="snapshotUrl" type="string" description="The urls to the remote snapshot repository." default="https://repository.apache.org/snapshots/" />
<property name="local" type="string" description="The path to the local repository" default="~/.m2/repository" />
<property name="readOnly" type="boolean" description="" default="false" />
<property name="index" type="string" description="The path to the index file" default="${.}/cnf/central.maven" />
Expand All @@ -928,7 +928,7 @@
helpUrl="https://bnd.bndtools.org/plugins/p2repo.html">
<property name="name" type="string" description="The name of the repo. Required." default="Maven POM Repository" />
<property name="releaseUrl" type="string" description="The url to the remote release repository. Can be a comma separated list of urls." default="https://repo.maven.apache.org/maven2/" />
<property name="snapshotUrl" type="string" description="The url to the remote snapshot repository. If this is not specified, it falls back to the release repository or just local if this is also not specified. Can be a comma separated list of urls." default="http://repository.apache.org/snapshots/" />
<property name="snapshotUrl" type="string" description="The url to the remote snapshot repository. If this is not specified, it falls back to the release repository or just local if this is also not specified. Can be a comma separated list of urls." default="https://repository.apache.org/snapshots/" />
<property name="local" type="string" description="The path to the local repository" default="~/.m2/repository" />
<property name="revision" type="string" description="Coordinates of a maven revision. I.e. group:artifactid[:c]:version. Can be a comma separated list of GAVs." />
<property name="location" type="string" description="Points to a file that is used as the cache. It will be in OSGi format." />
Expand Down

0 comments on commit 0cafeea

Please sign in to comment.