Download struts2-bootstrap-plugin-2.0.4.jar file

Introduction

You can download struts2-bootstrap-plugin-2.0.4.jar in this page.

License

Open Source

Type List

struts2-bootstrap-plugin-2.0.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.jgeppert.struts2.bootstrap/struts2-bootstrap-plugin/pom.properties
META-INF/maven/com.jgeppert.struts2.bootstrap/struts2-bootstrap-plugin/pom.xml
META-INF/struts-bootstrap-tags.tld
NOTICE.txt
com.jgeppert.struts2.bootstrap.components.Head.class
com.jgeppert.struts2.bootstrap.views.BootstrapTagLibrary.class
com.jgeppert.struts2.bootstrap.views.freemarker.tags.BootstrapModels.class
com.jgeppert.struts2.bootstrap.views.freemarker.tags.HeadModel.class
com.jgeppert.struts2.bootstrap.views.jsp.ui.HeadTag.class
com.jgeppert.struts2.bootstrap.views.velocity.components.BootstrapAbstractDirective.class
com.jgeppert.struts2.bootstrap.views.velocity.components.HeadDirective.class
struts-plugin.xml
template/bootstrap/actionerror.ftl
template/bootstrap/actionmessage.ftl
template/bootstrap/append.ftl
template/bootstrap/checkbox.ftl
template/bootstrap/checkboxlist.ftl
template/bootstrap/combobox.ftl
template/bootstrap/control-close.ftl
template/bootstrap/control.ftl
template/bootstrap/controlfooter.ftl
template/bootstrap/controlheader-core.ftl
template/bootstrap/controlheader.ftl
template/bootstrap/css.ftl
template/bootstrap/css/bootstrap-theme.css
template/bootstrap/css/bootstrap-theme.css.map
template/bootstrap/css/bootstrap-theme.min.css
template/bootstrap/css/bootstrap.css
template/bootstrap/css/bootstrap.css.map
template/bootstrap/css/bootstrap.min.css
template/bootstrap/doubleselect.ftl
template/bootstrap/fielderror.ftl
template/bootstrap/file.ftl
template/bootstrap/fonts/glyphicons-halflings-regular.eot
template/bootstrap/fonts/glyphicons-halflings-regular.svg
template/bootstrap/fonts/glyphicons-halflings-regular.ttf
template/bootstrap/fonts/glyphicons-halflings-regular.woff
template/bootstrap/fonts/glyphicons-halflings-regular.woff2
template/bootstrap/form-close.ftl
template/bootstrap/form.ftl
template/bootstrap/head.ftl
template/bootstrap/inputtransferselect.ftl
template/bootstrap/js/bootstrap.js
template/bootstrap/js/bootstrap.min.js
template/bootstrap/js/validation.js
template/bootstrap/js/validation.min.js
template/bootstrap/label.ftl
template/bootstrap/optiontransferselect.ftl
template/bootstrap/password.ftl
template/bootstrap/prepend.ftl
template/bootstrap/radiomap.ftl
template/bootstrap/reset.ftl
template/bootstrap/select.ftl
template/bootstrap/simple/checkbox.ftl
template/bootstrap/simple/checkboxlist.ftl
template/bootstrap/simple/doubleselect.ftl
template/bootstrap/simple/radiomap.ftl
template/bootstrap/simple/select.ftl
template/bootstrap/submit-close.ftl
template/bootstrap/submit.ftl
template/bootstrap/text.ftl
template/bootstrap/textarea.ftl
template/bootstrap/theme.properties
template/bootstrap/tooltip.ftl
template/bootstrap/updownselect.ftl

Pom

struts2-bootstrap-plugin-2.0.4.pom file content.

<?xml version="1.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>com.jgeppert.struts2.bootstrap</groupId>
		<artifactId>bootstrap</artifactId>
        <version>2.0.4</version>
    </parent>
    <artifactId>struts2-bootstrap-plugin</artifactId>
    <name>Struts2 Bootstrap Plugin</name>
    <packaging>jar</packaging>

   <build>
       <resources>
           <resource>
               <directory>src/main/resources</directory>
               <filtering>true</filtering>
               <includes>
                   <include>template/bootstrap/head.ftl</include>
               </includes>
           </resource>
           <resource>
               <directory>src/main/resources</directory>
               <filtering>false</filtering>
               <excludes>
                   <exclude>template/bootstrap/head.ftl</exclude>
               </excludes>
           </resource>
       </resources>
       <plugins>
            <plugin>
                <groupId>org.apache.myfaces.tobago</groupId>
                <artifactId>maven-apt-plugin</artifactId>
                <version>1.0.36</version>
                <configuration>
                    <A>
                        uri=/struts-bootstrap-tags,
                        tlibVersion=${tlib.version},
                        jspVersion=2.0,
                        shortName=sb,
                        displayName="Struts2 Bootstrap Tags",
                        outFile=${basedir}/target/classes/META-INF/struts-bootstrap-tags.tld,
                        description="Struts2 Tags for Bootstrap Theme.",
                        outTemplatesDir=${basedir}/src/site/docs
                    </A>
                    <resourceTargetPath>target</resourceTargetPath>
                    <fork>false</fork>
                    <force>true</force>
                    <nocompile>true</nocompile>
                    <showWarnings>true</showWarnings>
                    <factory>
                        org.apache.struts.annotations.taglib.apt.TLDAnnotationProcessorFactory
                    </factory>
                    <target>1.5</target>
                    <includes>
                        <include>**/*.java</include>
                    </includes>
                </configuration>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>execute</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>

        <!-- Core -->

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-annotations</artifactId>
            <version>1.0.4</version>
            <optional>true</optional>
        </dependency>

        <!-- JSP API -->

        <!-- struts-annotations must be in compile scope for maven-apt-plugin to
             function correctly. Marking it optional to exclude it from transitive dependency resolution -->
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-core</artifactId>
            <version>${struts2.version}</version>
            <type>jar</type>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity</artifactId>
            <version>1.5</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.jgeppert.struts2.bootstrap</groupId>
   <artifactId>struts2-bootstrap-plugin</artifactId>
   <version>2.0.4</version>
</dependency>

Download

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



Download struts2-bootstrap-plugin-2.0.4.jar file




PreviousNext

Related