Skip to content

Commit d06b3b7

Browse files
committed
testing plugins
1 parent 0ab475c commit d06b3b7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

MtdrSpring/backend/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,36 @@
6161
</dependencies>
6262
<build>
6363
<plugins>
64+
<!-- Keeps frontend and backend separate. -->
65+
<plugin>
66+
<groupId>com.github.eirslett</groupId>
67+
<artifactId>frontend-maven-plugin</artifactId>
68+
<!-- Use the latest released version:
69+
https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
70+
<version>1.9.1</version>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-resources-plugin</artifactId>
75+
<executions>
76+
<execution>
77+
<id>copy-resources</id>
78+
<phase>process-resources</phase>
79+
<goals>
80+
<goal>copy-resources</goal>
81+
</goals>
82+
<configuration>
83+
<outputDirectory>${project.build.directory}</outputDirectory>
84+
<resources>
85+
<resource>
86+
<directory>.</directory>
87+
<filtering>true</filtering>
88+
</resource>
89+
</resources>
90+
</configuration>
91+
</execution>
92+
</executions>
93+
</plugin>
6494
<plugin>
6595
<groupId>org.springframework.boot</groupId>
6696
<artifactId>spring-boot-maven-plugin</artifactId>

0 commit comments

Comments
 (0)