maven java 11 fix + jenkins setup

This commit is contained in:
simon987 2019-04-07 14:01:10 -04:00
parent 038f88e3d2
commit 9bc45958e2
5 changed files with 51 additions and 0 deletions

View File

@ -1,2 +1,7 @@
# music-graph
[![CodeFactor](https://www.codefactor.io/repository/github/simon987/music-graph-api/badge)](https://www.codefactor.io/repository/github/simon987/music-graph-api)
[![Build Status](https://ci.simon987.net/buildStatus/icon?job=music_graph_api)](https://ci.simon987.net/job/music_graph_api/)
wip

30
jenkins/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,30 @@
def remote = [:]
remote.name = 'remote'
remote.host = env.DEPLOY_HOST
remote.user = env.DEPLOY_USER
remote.identityFile = '/var/lib/jenkins/.ssh/id_rsa'
remote.knownHosts = '/var/lib/jenkins/.ssh/known_hosts'
remote.allowAnyHosts = true
remote.retryCount = 3
remote.retryWaitSec = 3
logLevel = 'FINER'
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './jenkins/build.sh'
}
}
stage('Deploy') {
steps {
sshCommand remote: remote, command: 'rm -rf music_graph_api/target music_graph_api/deploy.sh'
sshPut remote: remote, from: 'target', into: 'music_graph_api'
sshPut remote: remote, from: 'jenkins/deploy.sh', into: 'music_graph_api/deploy.sh'
sshCommand remote: remote, command: 'chmod +x music_graph_api/deploy.sh && ./music_graph_api/deploy.sh'
}
}
}
}

3
jenkins/build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
mvn package

4
jenkins/deploy.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
ls
echo "todo"

View File

@ -10,6 +10,15 @@
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>3.8.0</version>