Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
paths:
- parent/**
- testsupport/**
- util/**
- web/**
- .github/workflows/web.yml
push:
Expand All @@ -32,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 8 ]
java: [ 8, 11, 17, 21 ]
os: [ ubuntu-latest ]
name: JDK${{ matrix.java }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand All @@ -50,6 +51,9 @@ jobs:
- name: Build testsupport
shell: bash
run: mvn -U -e -B -ntp clean install -f testsupport
- name: Build util
shell: bash
run: mvn -U -e -B -ntp clean install -f util
- name: Build web
shell: bash
run: mvn -U -e -B -ntp clean install -f web
203 changes: 0 additions & 203 deletions web/LICENSE

This file was deleted.

8 changes: 0 additions & 8 deletions web/NOTICE

This file was deleted.

2 changes: 1 addition & 1 deletion web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.aries</groupId>
<artifactId>parent</artifactId>
<version>2.0.0</version>
<version>2.1.2-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
Loading