30 lines
941 B
YAML
30 lines
941 B
YAML
- hosts: all
|
|
roles:
|
|
- install-jdk
|
|
- install-maven
|
|
tasks:
|
|
- name: Ensure .m2 directory exists
|
|
file:
|
|
path: "{{ ansible_env.HOME }}/.m2"
|
|
state: directory
|
|
|
|
- name: Template out settings.xml
|
|
template:
|
|
src: settings.xml.j2
|
|
dest: "{{ ansible_env.HOME }}/.m2/settings.xml"
|
|
vars:
|
|
username: "{{ nebulous_nexus_repository_credentials.username }}"
|
|
password: "{{ nebulous_nexus_repository_credentials.password }}"
|
|
|
|
# TODO: support more libraries from one repo
|
|
- name: Deploy the artifact to OSSRH
|
|
shell: |
|
|
mvn deploy -DskipTests
|
|
args:
|
|
chdir: "{{ library_path }}" # Pointing to the directory with pom.xml
|
|
vars:
|
|
library_path: "{{ zuul.project.src_dir }}/{{ java_libraries[0].context }}"
|
|
environment:
|
|
MAVEN_HOME: "/opt/apache-maven-3.8.8"
|
|
PATH: "{{ ansible_env.PATH }}:/opt/apache-maven-3.8.8/bin"
|