Merge pull request #12 from kemitix/no-snapshot-deps

Use non-SNAPSHOT versions of mon and conditional
This commit is contained in:
Paul Campbell 2018-08-30 22:42:03 +01:00 committed by GitHub
commit 5d9b672dda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 17 deletions

View file

@ -1,6 +1,6 @@
final String publicRepo = 'https://github.com/kemitix/'
final String mvn = "mvn --batch-mode --update-snapshots --errors"
final dependenciesSupportJDK = 9
final dependenciesSupportJDK = 10
pipeline {
agent any
@ -9,21 +9,27 @@ pipeline {
steps {
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
sh "${mvn} clean compile checkstyle:checkstyle pmd:pmd test"
// Code Coverage to Codacy
sh "${mvn} jacoco:report com.gavinmogan:codacy-maven-plugin:coverage " +
"-DcoverageReportFile=target/site/jacoco/jacoco.xml " +
"-DprojectToken=`$JENKINS_HOME/codacy/token` " +
"-DapiToken=`$JENKINS_HOME/codacy/apitoken` " +
"-Dcommit=`git rev-parse HEAD`"
// Code Coverage to Jenkins
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
// PMD to Jenkins
pmd canComputeNew: false, defaultEncoding: '', healthy: '', pattern: '', unHealthy: ''
}
}
}
stage('Report Coverage') {
steps {
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
// Code Coverage to Jenkins
jacoco exclusionPattern: '**/*{Test|IT|Main|Application|Immutable}.class'
}
}
}
stage('Report Checkstyle') {
steps {
withMaven(maven: 'maven', jdk: 'JDK 1.8') {
// Checkstyle to Jenkins
step([$class : 'hudson.plugins.checkstyle.CheckStylePublisher',
pattern : '**/target/checkstyle-result.xml',
healthy : '20',
unHealthy: '100'])
step([$class: 'hudson.plugins.checkstyle.CheckStylePublisher',
pattern: '**/target/checkstyle-result.xml',
healthy:'20',
unHealthy:'100'])
}
}
}

View file

@ -21,10 +21,10 @@
<jgit.version>5.0.2.201807311906-r</jgit.version>
<junit.version>5.2.0</junit.version>
<assertj.version>3.11.1</assertj.version>
<mon.version>DEV-SNAPSHOT</mon.version>
<mon.version>0.11.0</mon.version>
<mockito.version>2.21.0</mockito.version>
<java-semver.version>0.9.0</java-semver.version>
<conditional.version>DEV-SNAPSHOT</conditional.version>
<conditional.version>0.7.0</conditional.version>
<digraph-dependency.basePackage>net.kemitix.gitdb</digraph-dependency.basePackage>
</properties>

View file

@ -85,7 +85,7 @@ class GitDBRepo {
) {
final GitTreeReader treeFilter = new GitTreeReader(repository).treeFilter(key);
return streamTree(branchRef, treeFilter).flatMap(s ->
Result.swap(s.findFirst()
Result.invert(s.findFirst()
.map(NamedRevBlob::blobAsString)
.map(Maybe::just)
.orElseGet(Maybe::nothing)));

View file

@ -114,7 +114,7 @@ final class LocalGitDBImpl implements GitDB, LocalGitDB {
public Result<Maybe<GitDBBranch>> branch(final String name) {
return Result.flatMapMaybe(
Result.of(() -> Maybe.maybe(repository.findRef(name))),
refMaybe -> Result.swap(refMaybe.map(branchInit)));
refMaybe -> Result.invert(refMaybe.map(branchInit)));
}
}