mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 10:58:42 +00:00
794795acf5
* MVVM design pattern using zkoss framework. * MVVM Design pattern updates for issues reported by SonarCloud. * MVVM Design pattern updates for coverage issues reported by SonarCloud. * MVVM Design pattern updates for coverage issues (removing lombok @Data) reported by SonarCloud. * MVVM Design pattern updates for coverage issues reported by Sonar - TEST cases added for Equals and ToString * MVVM Design Pattern - updating missing/todo details. * MVVM Design Pattern - adding lombok.config * MVVM Design Pattern - Removing xml, updating pom.xml and README as per suggested changes in code review * Update model-view-viewmodel/README.md * Update model-view-viewmodel/README.md * Update model-view-viewmodel/README.md * Update model-view-viewmodel/README.md * MVVM Design Pattern - Updated pom.xml and Readme based on Suggested changes * added type as xml * MVVM Design Patterm - root pom.xml and module pom.xml updated * Update pom.xml Co-authored-by: Subhrodip Mohanta <hello@subho.xyz> Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
26 lines
840 B
XML
26 lines
840 B
XML
<assembly
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
|
<id>webapp</id>
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.basedir}/src/main/java</directory>
|
|
<outputDirectory>/${project.artifactId}/src</outputDirectory>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>${project.basedir}/src/main/webapp</directory>
|
|
<outputDirectory>/${project.artifactId}/WebContent</outputDirectory>
|
|
</fileSet>
|
|
</fileSets>
|
|
<files>
|
|
<file>
|
|
<source>${project.build.directory}/${project.artifactId}.war</source>
|
|
<outputDirectory>/</outputDirectory>
|
|
</file>
|
|
</files>
|
|
</assembly>
|