Download bootstrap-material-design-0.2.1.jar file

Introduction

You can download bootstrap-material-design-0.2.1.jar in this page.

License

Custom

Type List

bootstrap-material-design-0.2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.webjars/bootstrap-material-design/pom.properties
META-INF/maven/org.webjars/bootstrap-material-design/pom.xml
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material-wfont.css
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material-wfont.css.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material-wfont.min.css
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material-wfont.min.css.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material.css
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material.css.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material.min.css
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/material.min.css.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/ripples.css
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/ripples.css.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/ripples.min.css
META-INF/resources/webjars/bootstrap-material-design/0.2.1/css/ripples.min.css.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/fonts/LICENSE.txt
META-INF/resources/webjars/bootstrap-material-design/0.2.1/fonts/Material-Design-Icons.eot
META-INF/resources/webjars/bootstrap-material-design/0.2.1/fonts/Material-Design-Icons.svg
META-INF/resources/webjars/bootstrap-material-design/0.2.1/fonts/Material-Design-Icons.ttf
META-INF/resources/webjars/bootstrap-material-design/0.2.1/fonts/Material-Design-Icons.woff
META-INF/resources/webjars/bootstrap-material-design/0.2.1/js/material.js
META-INF/resources/webjars/bootstrap-material-design/0.2.1/js/material.min.js
META-INF/resources/webjars/bootstrap-material-design/0.2.1/js/material.min.js.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/js/ripples.js
META-INF/resources/webjars/bootstrap-material-design/0.2.1/js/ripples.min.js
META-INF/resources/webjars/bootstrap-material-design/0.2.1/js/ripples.min.js.map
META-INF/resources/webjars/bootstrap-material-design/0.2.1/test.html

Pom

bootstrap-material-design-0.2.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    
    <packaging>jar</packaging>
    <groupId>org.webjars</groupId>
    <artifactId>bootstrap-material-design</artifactId>
    <version>0.2.1</version>
    <name>Material Design for Bootstrap</name>
    <description>WebJar for Material Design for Bootstrap</description>
    <url>http://webjars.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <upstream.version>0.2.1</upstream.version>
        <upstream.url>https://github.com/FezVrasta/bootstrap-material-design/archive/${upstream.version}.zip</upstream.url>
        <destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version}</destDir>
        <requirejs>
            {
                "paths": {
                    "bootstrap-material-design": "js/material"
                }
            }
        </requirejs>
    </properties>

    <developers>
        <developer>
            <id>jamesward</id>
            <name>James Ward</name>
            <email>james@jamesward.com</email>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>Custom</name>
            <url>https://github.com/FezVrasta/bootstrap-material-design/blob/master/LICENSE.md</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>http://github.com/webjars/bootstrap-material-design</url>
        <connection>scm:git:https://github.com/webjars/bootstrap-material-design.git</connection>
        <developerConnection>scm:git:https://github.com/webjars/bootstrap-material-design.git</developerConnection>
        <tag>bootstrap-material-design-0.2.1</tag>
    </scm>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals><goal>run</goal></goals>
                        <configuration>
                            <target>
                                <echo message="download archive" />
                                <get src="${upstream.url}" dest="${project.build.directory}/${project.artifactId}.zip" />
                                <echo message="unzip archive" />
                                <unzip src="${project.build.directory}/${project.artifactId}.zip" dest="${project.build.directory}" />
                                <echo message="moving resources" />
                                <move todir="${destDir}">
                                    <fileset dir="${project.build.directory}/bootstrap-material-design-${upstream.version}/dist" />
                                </move>
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5</version>
            </plugin>

            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.2</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>sonatype-nexus-staging</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.webjars</groupId>
   <artifactId>bootstrap-material-design</artifactId>
   <version>0.2.1</version>
</dependency>

Download

If you think the following bootstrap-material-design-0.2.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download bootstrap-material-design-0.2.1.jar file




PreviousNext

Related