Skip to content

Commit

Permalink
Switch to Web Bundler (#1248)
Browse files Browse the repository at this point in the history
* Switch to Web Bundler

* Switch to Java

* Add Playwright tests

* Fixes
  • Loading branch information
ia3andy authored Dec 22, 2023
1 parent b078b20 commit 04b40ae
Show file tree
Hide file tree
Showing 255 changed files with 6,738 additions and 25,774 deletions.
23 changes: 10 additions & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/library"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/frontend"
schedule:
interval: "daily"
- package-ecosystem: "maven"
directory: "/api"
schedule:
interval: "daily"
- package-ecosystem: "maven"
directory: "/acceptance-test"
schedule:
interval: "daily"
groups:
quarkus:
patterns:
- "quarkus.*"
dependencies:
patterns:
- "*"
exclude-patterns:
- "quarkus.*"
2 changes: 1 addition & 1 deletion .github/quarkus-ecosystem-test
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

## Testing using quarkus snapshot + no real platform; just core. Will thus not find platform issues; but will
## find core vs code.quarkus issues.
cd api && mvn --settings $PWD/../.github/quarkus-ecosystem-maven-settings.xml -B clean install \
mvn --settings $PWD/../.github/quarkus-ecosystem-maven-settings.xml -B clean install -Dlib \
-Dquarkus.devtools.version=${QUARKUS_VERSION} \
-Dquarkus.platform.group-id=io.quarkus \
-Dquarkus.platform.artifact-id=quarkus-bom \
Expand Down
48 changes: 0 additions & 48 deletions .github/workflows/acceptance-test.tests.actions.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
name: API Tests
name: Build & Test
on:
push:
paths:
- 'pom.xml'
- 'api/**'
- '.github/**'
pull_request:
types: [assigned, opened, synchronize, reopened, ready_for_review, edited]
paths:
- 'pom.xml'
- 'api/**'
- '.github/**'


env:
# Workaround testsuite locale issue
Expand Down Expand Up @@ -39,10 +32,8 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-
- name: Build
working-directory: api
run: |
mvn -e -B -DskipTests=true clean package
mvn -e -B -DskipTests=true clean package -Dlib
- name: Test
working-directory: api
run: |
mvn -e -B verify
mvn -e -B verify -Dlib -Dacceptance-test
26 changes: 0 additions & 26 deletions .github/workflows/frontend.preview-teardown.actions.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/frontend.preview.actions.yml

This file was deleted.

72 changes: 0 additions & 72 deletions .github/workflows/frontend.tests.actions.yml

This file was deleted.

73 changes: 0 additions & 73 deletions .github/workflows/library.publish.actions.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
.factorypath
.settings/
bin/
node_modules
node_modules/

.quarkus/

node_modules

# IntelliJ
.idea
*.ipr
*.iml
*.iws

node_modules
.yarn
.bit

Expand Down
8 changes: 8 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
<extension>
<groupId>io.mvnpm</groupId>
<artifactId>locker-maven-plugin</artifactId>
<version>0.0.4</version>
</extension>
</extensions>
File renamed without changes.
File renamed without changes.
5 changes: 0 additions & 5 deletions .quarkus/cli/plugins/quarkus-cli-catalog.json

This file was deleted.

Loading

0 comments on commit 04b40ae

Please sign in to comment.