Download angular-ui-bootstrap-0.14.3.jar file

Introduction

You can download angular-ui-bootstrap-0.14.3.jar in this page.

License

MIT License

Type List

angular-ui-bootstrap-0.14.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.webjars/angular-ui-bootstrap/pom.properties
META-INF/maven/org.webjars/angular-ui-bootstrap/pom.xml
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap-tpls.js
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap-tpls.js.gz
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap-tpls.min.js
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap-tpls.min.js.gz
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap.js
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap.js.gz
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap.min.js
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/ui-bootstrap.min.js.gz
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/webjars-requirejs.js
META-INF/resources/webjars/angular-ui-bootstrap/0.14.3/webjars-requirejs.js.gz

Pom

angular-ui-bootstrap-0.14.3.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>angular-ui-bootstrap</artifactId>
    <version>0.14.3</version>
    <name>Angular Ui Bootstrap</name>
    <description>WebJar for Angular UI Bootstrap</description>
    <url>http://webjars.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <angularui.bootstrap.version>0.14.3</angularui.bootstrap.version>
        <angularui.bootstrap.sourceUrl>https://github.com/angular-ui/bootstrap/archive</angularui.bootstrap.sourceUrl>
        <destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version}</destDir>
        <requirejs>
            {
                "paths": {
                    "ui-bootstrap": "ui-bootstrap",
                    "ui-bootstrap-tpls": "ui-bootstrap-tpls"
                },
                "shim": {
                    "ui-bootstrap": [ "angular" ],
                    "ui-bootstrap-tpls": [ "angular" ]
                }
            }
        </requirejs>
    </properties>

    <licenses>
        <license>
            <name>MIT License</name>
            <url>https://github.com/angular-ui/bootstrap/blob/master/LICENSE</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <dependencies>
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>angularjs</artifactId>
            <version>1.2.16-2</version>
        </dependency>
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>bootstrap</artifactId>
            <version>3.1.1-1</version>
            <exclusions>
                <exclusion>
                    <groupId>org.webjars</groupId>
                    <artifactId>jquery</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <scm>
        <url>https://github.com/webjars/angular-ui-bootstrap</url>
        <connection>scm:git:https://github.com/webjars/angular-ui-bootstrap.git</connection>
        <developerConnection>scm:git:https://github.com/webjars/angular-ui-bootstrap.git</developerConnection>
        <tag>angular-ui-bootstrap-0.14.3</tag>
    </scm>

    <developers>
        <developer>
            <id>smallg</id>
            <name>Small Guo</name>
            <email>small.guo@enovation.com.cn</email>
        </developer>
    </developers>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>wagon-maven-plugin</artifactId>
                <version>1.0-beta-4</version>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>download-single</goal>
                        </goals>
                        <configuration>
                            <url>${angularui.bootstrap.sourceUrl}</url>
                            <fromFile>gh-pages.zip</fromFile>
                            <toFile>${project.build.directory}/${project.artifactId}.zip</toFile>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target>
                                <echo message="unzip archive" />
                                <unzip src="${project.build.directory}/${project.artifactId}.zip" dest="${project.build.directory}" />
                                <echo message="moving resources" />
                                <copy tofile="${destDir}/ui-bootstrap.js" file="${project.build.directory}/bootstrap-gh-pages/ui-bootstrap-${angularui.bootstrap.version}.js" />
                                <copy tofile="${destDir}/ui-bootstrap.min.js" file="${project.build.directory}/bootstrap-gh-pages/ui-bootstrap-${angularui.bootstrap.version}.min.js" />
                                <copy tofile="${destDir}/ui-bootstrap-tpls.js" file="${project.build.directory}/bootstrap-gh-pages/ui-bootstrap-tpls-${angularui.bootstrap.version}.js" />
                                <copy tofile="${destDir}/ui-bootstrap-tpls.min.js" file="${project.build.directory}/bootstrap-gh-pages/ui-bootstrap-tpls-${angularui.bootstrap.version}.min.js" />
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5.1</version>
            </plugin>
		<plugin>
			<groupId>com.googlecode.todomap</groupId>
			<artifactId>maven-jettygzip-plugin</artifactId>
			<version>0.0.4</version>
			<configuration>
				<webappDirectory>target/classes</webappDirectory>
				<outputDirectory>target/classes</outputDirectory>
			</configuration>
			<executions>
				<execution>
					<phase>prepare-package</phase>
					<goals>
						<goal>process</goal>
					</goals>
				</execution>
			</executions>
		</plugin>

            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.5</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>sonatype-nexus-staging</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
        </plugins>
        <resources>
            <resource>
               <directory>${project.basedir}/src/main/resources</directory>
                <targetPath>${destDir}</targetPath>
            </resource>
        </resources>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.webjars</groupId>
   <artifactId>angular-ui-bootstrap</artifactId>
   <version>0.14.3</version>
</dependency>

Download

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



Download angular-ui-bootstrap-0.14.3.jar file




PreviousNext

Related