Skip to content

Commit 3927c33

Browse files
authored
Merge pull request #129 from jstourac/https
[pom.xml] Use HTTPS for Maven repositories.
2 parents 3febc56 + 39e836d commit 3927c33

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>org.jboss.qa.noe</groupId>
@@ -21,7 +21,7 @@
2121
<licenses>
2222
<license>
2323
<name>Apache License, Version 2.0</name>
24-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
2525
<distribution>repo</distribution>
2626
</license>
2727
</licenses>
@@ -58,17 +58,17 @@
5858
<repository>
5959
<id>jboss-qa-releases</id>
6060
<name>JBoss QA release repository</name>
61-
<url>http://${env.NEXUS_HOST}/nexus/content/repositories/jboss-qa-releases/</url>
61+
<url>https://${env.NEXUS_HOST}/nexus/content/repositories/jboss-qa-releases/</url>
6262
</repository>
6363
<repository>
6464
<id>jboss-qa-snapshots</id>
6565
<name>JBoss QA snapshot repository</name>
66-
<url>http://${env.NEXUS_HOST}/nexus/content/repositories/jboss-qa-snapshots/</url>
66+
<url>https://${env.NEXUS_HOST}/nexus/content/repositories/jboss-qa-snapshots/</url>
6767
</repository>
6868
<repository>
6969
<id>jboss-public-repository-group</id>
7070
<name>JBoss Public Maven Repository Group</name>
71-
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
71+
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
7272
</repository>
7373
<repository>
7474
<id>rh-ga-repository</id>

testsuite/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33

44
<parent>

0 commit comments

Comments
 (0)