Download datetimepicker-2.3.4.jar file

Introduction

You can download datetimepicker-2.3.4.jar in this page.

License

MIT

Type List

datetimepicker-2.3.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.webjars/datetimepicker/pom.properties
META-INF/maven/org.webjars/datetimepicker/pom.xml
META-INF/resources/webjars/datetimepicker/2.3.4/jquery.datetimepicker.css
META-INF/resources/webjars/datetimepicker/2.3.4/jquery.datetimepicker.js
META-INF/resources/webjars/datetimepicker/2.3.4/jquery.js
META-INF/resources/webjars/datetimepicker/2.3.4/screen/1.png
META-INF/resources/webjars/datetimepicker/2.3.4/screen/2.png
META-INF/resources/webjars/datetimepicker/2.3.4/screen/3.1.png
META-INF/resources/webjars/datetimepicker/2.3.4/screen/3.png

Pom

datetimepicker-2.3.4.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>datetimepicker</artifactId>
    <version>2.3.4</version>
    <name>DatetimePicker</name>
    <description>WebJar for JQuery DatetimePicker plugin</description>
    <url>http://webjars.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <upstream.version>2.3.4</upstream.version>
        <upstream.url>https://github.com/xdan/datetimepicker/archive/${upstream.version}.zip</upstream.url>
        <destDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${upstream.version}</destDir>
        <workDir>${project.build.directory}/${project.artifactId}</workDir>
        <requirejs>
            {
                "paths": {
                    "datetimepicker": "jquery.datetimepicker"
                },
                "shims": {
                    "datetimepicker": ["jquery"]
                }
            }
        </requirejs>
    </properties>

    <developers>
        <developer>
            <name>Mitch Kyle</name>
            <email>mitch.tux@gmail.com</email>
            <timezone>-4</timezone>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>MIT</name>
            <url>https://raw.githubusercontent.com/mitch-kyle/datetimepicker-webjar/master/LICENSE</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>http://github.com/webjars/datetimepicker</url>
        <connection>scm:git:https://github.com/webjars/datetimepicker.git</connection>
        <developerConnection>scm:git:https://github.com/webjars/datetimepicker.git</developerConnection>
        <tag>datetimepicker-2.3.4</tag>
    </scm>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target>
                                <get src="${upstream.url}" dest="${project.build.directory}/${project.artifactId}.zip" />
                                <unzip src="${project.build.directory}/${project.artifactId}.zip" dest="${workDir}" />
                                <copy verbose="true" todir="${destDir}">
                                    <fileset dir="${workDir}/datetimepicker-${upstream.version}" includes="jquery.*,screen/**" />
                                </copy>
                            </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.5.1</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>datetimepicker</artifactId>
   <version>2.3.4</version>
</dependency>

Download

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



Download datetimepicker-2.3.4.jar file




PreviousNext

Related