Skip to content

Commit 6a8b559

Browse files
committed
cleanup and simplify pom, switch to wcm.io global-parent, remove build environment files no longer in use
1 parent 3445a64 commit 6a8b559

12 files changed

Lines changed: 77 additions & 1344 deletions

File tree

.github/workflows/maven-build.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Build validation
2+
3+
name: Build
4+
5+
on:
6+
push:
7+
branches:
8+
- develop
9+
- feature/wcmio-fork
10+
pull_request:
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
matrix:
19+
java: [17]
20+
os: [ubuntu-latest]
21+
distribution: [temurin]
22+
23+
steps:
24+
- name: Checkout code
25+
uses: actions/checkout@v6
26+
27+
- name: Setup JDK
28+
uses: actions/setup-java@v5
29+
with:
30+
distribution: ${{ matrix.distribution }}
31+
java-version: ${{ matrix.java }}
32+
cache: maven
33+
34+
- name: Build and verify
35+
run: mvn -Pcontinuous-integration -B -U clean verify

.github/workflows/maven.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

azure-pipelines.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

config/checkstyle.xml

Lines changed: 0 additions & 117 deletions
This file was deleted.

0 commit comments

Comments
 (0)