Skip to content

De-duplicate Module.xml jar entries based on scope. #95

De-duplicate Module.xml jar entries based on scope.

De-duplicate Module.xml jar entries based on scope. #95

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: '11.0.11'
architecture: x64
- name: Grant execute permission for generator gradlew
working-directory: ./generator
run: chmod +x gradlew
- name: Gradle Generator Build Task
working-directory: ./generator
run: ./gradlew build --stacktrace --info
- name: Grant execute permission for module plugin gradlew
working-directory: ./gradle-module-plugin
run: chmod +x gradlew
- name: Gradle Module Plugin Build Task
working-directory: ./gradle-module-plugin
run: ./gradlew build --stacktrace --info