├── .gitignore ├── README.md └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | /*.iml 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | WebJar for slimScroll 2 | 3 | More info: http://webjars.org 4 | 5 | Upstream: https://github.com/rochal/jQuery-slimScroll 6 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4.0.0 4 | 5 | 6 | org.sonatype.oss 7 | oss-parent 8 | 7 9 | 10 | 11 | jar 12 | org.webjars 13 | jQuery-slimScroll 14 | 1.3.9-SNAPSHOT 15 | slimScroll 16 | WebJar for slimScroll 17 | http://webjars.org 18 | 19 | 20 | UTF-8 21 | 1.3.8 22 | https://raw.githubusercontent.com/rochal/jQuery-slimScroll/v${upstream.version} 23 | ${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${upstream.version} 24 | 25 | { 26 | "paths": { 27 | "slimScroll": "jquery.slimscroll" 28 | }, 29 | "shim": { 30 | "slimScroll": ["jquery"] 31 | } 32 | } 33 | 34 | 35 | 36 | 37 | 38 | jamesward 39 | James Ward 40 | james@jamesward.com 41 | 42 | 43 | 44 | 45 | 46 | MIT 47 | http://www.opensource.org/licenses/mit-license.php 48 | repo 49 | 50 | 51 | GPL 52 | http://www.opensource.org/licenses/gpl-license.php 53 | repo 54 | 55 | 56 | 57 | 58 | http://github.com/webjars/jQuery-slimScroll 59 | scm:git:https://github.com/webjars/jQuery-slimScroll.git 60 | scm:git:https://github.com/webjars/jQuery-slimScroll.git 61 | HEAD 62 | 63 | 64 | 65 | 66 | org.webjars 67 | jquery 68 | 1.11.1 69 | 70 | 71 | 72 | 73 | 74 | 75 | org.codehaus.mojo 76 | wagon-maven-plugin 77 | 1.0-beta-4 78 | 79 | 80 | download-full-js 81 | process-resources 82 | 83 | download-single 84 | 85 | 86 | ${upstream.url} 87 | jquery.slimscroll.js 88 | ${destDir} 89 | 90 | 91 | 92 | download-min-js 93 | process-resources 94 | 95 | download-single 96 | 97 | 98 | ${upstream.url} 99 | jquery.slimscroll.min.js 100 | ${destDir} 101 | 102 | 103 | 104 | 105 | 106 | 107 | org.apache.maven.plugins 108 | maven-release-plugin 109 | 2.5.3 110 | 111 | 112 | 113 | org.sonatype.plugins 114 | nexus-staging-maven-plugin 115 | 1.6.7 116 | true 117 | 118 | sonatype-nexus-staging 119 | https://oss.sonatype.org/ 120 | true 121 | 122 | 123 | 124 | 125 | 126 | 127 | --------------------------------------------------------------------------------