Skip to content

Commit 38d0365

Browse files
committed
Take into account of the new location and new major version of our Nexus service
1 parent aac8588 commit 38d0365

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

Jenkinsfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
node {
22
catchError {
3-
def nexusRepo = 'https://www.silverpeas.org/nexus/content/repositories/snapshots/'
43
docker.image('silverpeas/silverbuild')
54
.inside('-u root -v $HOME/.m2/settings.xml:/root/.m2/settings.xml -v $HOME/.m2/settings-security.xml:/root/.m2/settings-security.xml -v $HOME/.gitconfig:/root/.gitconfig -v $HOME/.ssh:/root/.ssh -v $HOME/.gnupg:/root/.gnupg') {
65
stage('Preparation') {
@@ -13,7 +12,7 @@ node {
1312
// deployment to ensure dependencies on this snapshot version of Silverpeas Core for other
1413
// projects to build downstream. By doing so, we keep clean the local maven repository for
1514
// reproducibility reason
16-
sh "mvn deploy -DaltDeploymentRepository=silverpeas::default::${nexusRepo} -Pdeployment -Djava.awt.headless=true -Dmaven.test.skip=true"
15+
sh "mvn deploy -Pdeployment -Djava.awt.headless=true -Dmaven.test.skip=true"
1716
}
1817
}
1918
}

pom.xml

Lines changed: 3 additions & 3 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/maven-v4_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/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
55
<groupId>org.silverpeas</groupId>
@@ -24,7 +24,7 @@
2424
<id>Silverpeas</id>
2525
<layout>default</layout>
2626
<name>Silverpeas Repository</name>
27-
<url>https://www.silverpeas.org/nexus/content/groups/silverpeas</url>
27+
<url>https://nexus3.silverpeas.org/repository/silverpeas</url>
2828
<releases>
2929
<enabled>true</enabled>
3030
</releases>
@@ -38,7 +38,7 @@
3838
<pluginRepository>
3939
<id>Silverpeas</id>
4040
<name>Silverpeas Maven 3.x Repository</name>
41-
<url>https://www.silverpeas.org/nexus/content/groups/silverpeas</url>
41+
<url>https://nexus3.silverpeas.org/repository/silverpeas</url>
4242
</pluginRepository>
4343
</pluginRepositories>
4444

wopi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
2424
-->
2525

26-
<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/maven-v4_0_0.xsd">
26+
<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/maven-v4_0_0.xsd">
2727
<modelVersion>4.0.0</modelVersion>
2828
<parent>
2929
<groupId>org.silverpeas</groupId>

wopi/wopi-configuration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
2424
-->
2525

26-
<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/maven-v4_0_0.xsd">
26+
<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/maven-v4_0_0.xsd">
2727
<modelVersion>4.0.0</modelVersion>
2828
<parent>
2929
<groupId>org.silverpeas.wbe</groupId>

wopi/wopi-war/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<project xmlns="http://maven.apache.org/POM/4.0.0"
2727
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
28-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
28+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
2929
<modelVersion>4.0.0</modelVersion>
3030
<parent>
3131
<groupId>org.silverpeas.wbe</groupId>

0 commit comments

Comments
 (0)