Skip to content

Commit 457033f

Browse files
committed
fixed location of built resources
1 parent 38736c1 commit 457033f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
<executions>
211211
<execution>
212212
<id>yarn install build</id>
213-
<phase>generate-sources</phase>
213+
<phase>generate-resources</phase>
214214
<goals>
215215
<goal>exec</goal>
216216
</goals>

web-report/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ npm run debug
6464
yarn debug
6565
```
6666

67-
This will build the project and copy static test files from `tests/static` directory to `../target/generated-sources/webreport` before previewing.
67+
This will build the project and copy static test files from `tests/static` directory to `../target/classes/webreport` before previewing.
6868

6969
## Available Scripts
7070

web-report/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"installAndBuild": "yarn install && yarn generate && vitest --no-watch && tsc -b && vite build",
1111
"lint": "eslint .",
1212
"preview": "vite preview",
13-
"debug": "vite build && cpx \"src-e2e/static/*\" ../target/generated-sources/webreport && vite preview",
13+
"debug": "vite build && cpx \"src-e2e/static/*\" ../target/classes/webreport && vite preview",
1414
"test": "vitest"
1515
},
1616
"dependencies": {

web-report/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default defineConfig({
1919
},
2020
},
2121
build: {
22-
outDir: '../target/generated-sources/webreport'
22+
outDir: '../target/classes/webreport'
2323
},
2424

2525
} as UserConfig)

0 commit comments

Comments
 (0)