w20-bridge-web-bootstrap-2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.seedstack.addons.w20</groupId>
<artifactId>w20-bridge-web-bootstrap-2</artifactId>
<version>3.2.8</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.seedstack.addons.w20</groupId>
<artifactId>w20-bridge</artifactId>
<version>3.2.8</version>
</parent>
<artifactId>w20-bridge-web-bootstrap-2</artifactId>
<properties>
<compatibility.skip>true</compatibility.skip>
<jpms.moduleName>org.seedstack.w20.bootstrap2</jpms.moduleName>
</properties>
<dependencies>
<dependency>
<groupId>org.seedstack.addons.w20</groupId>
<artifactId>w20-bridge-web</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>yarn install</id>
<goals>
<goal>yarn</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>copy-web-resources</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy todir="${project.build.directory}/classes/META-INF/resources/node_modules">
<fileset dir="${project.basedir}/node_modules">
<exclude name="@w20/*/specs/**" />
<include name="@w20/w20-bootstrap-2/**" />
<include name="angular-ui-bootstrap/**" />
<include name="bootstrap-2.3.2/**" />
<include name="font-awesome/**" />
</fileset>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>