Skip to content

Commit

Permalink
Added Boostrap 5 webjar dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
litvinovg committed May 24, 2024
1 parent 213ff88 commit f7e07e3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,26 @@
</fileMappers>
<outputDirectory>target/${project.artifactId}-${project.version}/webjars/fonts/open-sans/</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<type>jar</type>
<includes>
META-INF/resources/webjars/bootstrap/*/css/*.css,
META-INF/resources/webjars/bootstrap/*/css/*.map,
META-INF/resources/webjars/bootstrap/*/js/*.js,
META-INF/resources/webjars/bootstrap/*/js/*.map
</includes>
<fileMappers>
<org.codehaus.plexus.components.io.filemappers.RegExpFileMapper>
<pattern>
^META-INF/resources/webjars/bootstrap/[^/]+/</pattern>
<replacement>./</replacement>
</org.codehaus.plexus.components.io.filemappers.RegExpFileMapper>
</fileMappers>
<outputDirectory>
target/${project.artifactId}-${project.version}/webjars/bootstrap/</outputDirectory>
</artifactItem>
</artifactItems>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
Expand All @@ -157,6 +177,11 @@
</build>

<dependencies>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>5.3.3</version>
</dependency>
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>jquery-migrate</artifactId>
Expand Down

0 comments on commit f7e07e3

Please sign in to comment.