Skip to content

Commit 882b8a0

Browse files
authored
Merge pull request #796 from dbelob/configuration-change
Configuration change
2 parents 29154ca + e8f6f00 commit 882b8a0

7 files changed

Lines changed: 17 additions & 8 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>react-application-deployment</groupId>
66
<artifactId>react-application-deployment-parent</artifactId>
7-
<version>1.1.15-SNAPSHOT</version>
7+
<version>1.2.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99
<name>ReactApplicationDeployment Parent</name>
1010

react-application-deployment-distrib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>react-application-deployment</groupId>
77
<artifactId>react-application-deployment-parent</artifactId>
8-
<version>1.1.15-SNAPSHOT</version>
8+
<version>1.2.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>react-application-deployment-distrib</artifactId>

react-application-deployment-distrib/whatsnew.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
React Application Deployment
22

3+
Version 1.2.0 - September 1, 2024
4+
* Reducing the build size.
5+
36
Version 1.1.0 - August 19, 2024
47
* Migration from Create React App (CRA) to Vite.
58

react-application-deployment-server/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>react-application-deployment</groupId>
77
<artifactId>react-application-deployment-parent</artifactId>
8-
<version>1.1.15-SNAPSHOT</version>
8+
<version>1.2.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>react-application-deployment-server</artifactId>
@@ -31,6 +31,12 @@
3131
<artifactId>spring-boot-maven-plugin</artifactId>
3232
<version>${spring.boot.version}</version>
3333
<configuration>
34+
<excludes>
35+
<exclude>
36+
<groupId>react-application-deployment</groupId>
37+
<artifactId>react-application-deployment-web</artifactId>
38+
</exclude>
39+
</excludes>
3440
<executable>true</executable>
3541
<mainClass>application.App</mainClass>
3642
</configuration>
@@ -68,7 +74,7 @@
6874
<outputDirectory>${project.build.directory}/classes/static/</outputDirectory>
6975
<resources>
7076
<resource>
71-
<directory>${project.parent.basedir}/react-application-deployment-web/target/
77+
<directory>${project.parent.basedir}/react-application-deployment-web/target/classes/static/
7278
</directory>
7379
</resource>
7480
</resources>

react-application-deployment-web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

react-application-deployment-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>react-application-deployment</groupId>
77
<artifactId>react-application-deployment-parent</artifactId>
8-
<version>1.1.15-SNAPSHOT</version>
8+
<version>1.2.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>react-application-deployment-web</artifactId>

react-application-deployment-web/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import react from '@vitejs/plugin-react'
55
export default defineConfig({
66
plugins: [react()],
77
build: {
8-
outDir: 'target'
8+
outDir: 'target/classes/static'
99
},
1010
server: {
1111
proxy: {

0 commit comments

Comments
 (0)