Skip to content

Commit

Permalink
Remove content repository related code
Browse files Browse the repository at this point in the history
Content repository is not being used anywhere. Thus removing any
content repository related code. `mvn` deploy target has been changed
to `install` as we don't want to copy the final package to the remote
repository.

Fixes: openshiftio/openshift.io#3895
  • Loading branch information
kishansagathiya authored and sthaha committed Aug 6, 2018
1 parent f464fb8 commit 71708e0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 31 deletions.
1 change: 0 additions & 1 deletion vars/canaryRelease.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,4 @@ def call(body) {
}
}

contentRepository(body);
}
28 changes: 0 additions & 28 deletions vars/contentRepository.groovy

This file was deleted.

3 changes: 1 addition & 2 deletions vars/mavenCanaryRelease.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def call(body) {
}
}

sh "mvn clean -B -e -U deploy -Dmaven.test.skip=${skipTests} ${spaceLabelArg} -P openshift"
sh "mvn clean -B -e -U install -Dmaven.test.skip=${skipTests} ${spaceLabelArg} -P openshift"


junitResults(body);
Expand Down Expand Up @@ -95,7 +95,6 @@ def call(body) {
}
}

contentRepository(body);
}

def patchFMPVersion() {
Expand Down

0 comments on commit 71708e0

Please sign in to comment.