We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f75bf9d commit ff10f89Copy full SHA for ff10f89
litemall-all/pom.xml
@@ -57,6 +57,27 @@
57
</executions>
58
</plugin>
59
60
+ <plugin>
61
+ <artifactId>maven-resources-plugin</artifactId>
62
+ <executions>
63
+ <execution>
64
+ <id>copy-resources-vue</id>
65
+ <phase>validate</phase>
66
+ <goals>
67
+ <goal>copy-resources</goal>
68
+ </goals>
69
+ <configuration>
70
+ <outputDirectory>${basedir}/target/classes/static/vue</outputDirectory>
71
+ <resources>
72
+ <resource>
73
+ <directory>../litemall-vue/dist</directory>
74
+ </resource>
75
+ </resources>
76
+ </configuration>
77
+ </execution>
78
+ </executions>
79
+ </plugin>
80
+
81
82
</plugins>
83
</build>
0 commit comments