mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

vharseko
27.55.2021 67501d71ec1014c8a396b1cddf8228b89fdb4e86
GithubAction build (#179)

* Githubction build

* <artifactId>jaxws-ri</artifactId> 2.3.1->2.3.2
1 files added
1 files modified
36 ■■■■■ changed files
.github/workflows/maven.yml 34 ●●●●● patch | view | raw | blame | history
opendj-dsml-servlet/pom.xml 2 ●●● patch | view | raw | blame | history
.github/workflows/maven.yml
New file
@@ -0,0 +1,34 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build
on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]
jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        java: [ '8', '11']
        os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
    steps:
    - uses: actions/checkout@v2
    - name: Java ${{ matrix.Java }} (${{ matrix.os }})
      uses: actions/setup-java@v2
      with:
        java-version: ${{ matrix.java }}
        distribution: 'adopt'
    - name: Cache Maven packages
      uses: actions/cache@v2
      with:
         path: ~/.m2
         key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
         restore-keys: ${{ runner.os }}-m2
    - name: Build with Maven
      run: mvn --batch-mode  --update-snapshots package --file pom.xml
opendj-dsml-servlet/pom.xml
@@ -83,7 +83,7 @@
        <dependency>
            <groupId>com.sun.xml.ws</groupId>
            <artifactId>jaxws-ri</artifactId>
            <version>2.3.1</version>
            <version>2.3.2</version>
            <type>pom</type>
        </dependency>
    </dependencies>