Skip to content

Commit

Permalink
pom
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-godoy committed Feb 5, 2025
1 parent 78193d7 commit d9464c1
Showing 1 changed file with 25 additions and 49 deletions.
74 changes: 25 additions & 49 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -528,34 +528,31 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>copy-demo</id>
<phase>process-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target name="copy-demo">
<copy todir="${project.basedir}/target/merge">
<fileset dir="${project.basedir}/src/main">
<include name="**"/>
<exclude name="**/it/*"/>
<exclude name="**/test/*"/>
</fileset>
<fileset dir="${project.basedir}/src/test">
<include name="**"/>
</fileset>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>copy-demo</id>
<phase>process-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target name="copy-demo">
<copy todir="${project.basedir}/src/main">
<fileset dir="${project.basedir}/src/test">
<include name="**"/>
<exclude name="**/it/*"/>
<exclude name="**/test/*"/>
</fileset>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>com.vaadin</groupId>
Expand All @@ -568,10 +565,6 @@
<goal>build-frontend</goal>
</goals>
<phase>compile</phase>
<configuration>
<javaSourceFolder>${project.basedir}/target/merge/java</javaSourceFolder>
<javaResourceFolder>${project.basedir}/target/merge/resources</javaResourceFolder>
</configuration>
</execution>
</executions>
</plugin>
Expand All @@ -585,23 +578,6 @@
</goals>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<webResources>
<resource>
<directory>${project.build.directory}</directory>
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>*-demo.jar</include>
</includes>
</resource>
<resource>
<directory>${project.build.directory}/test-classes</directory>
<targetPath>WEB-INF/classes</targetPath>
<includes>
<include>**/DemoView.class</include>
<include>**/DemoLayout.class</include>
</includes>
</resource>
</webResources>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit d9464c1

Please sign in to comment.