├── .gitignore ├── README.md └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | /*.iml 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | WebJar for stomp-websocket 2 | 3 | More info: http://webjars.org 4 | 5 | Upstream: https://github.com/jmesnil/stomp-websocket 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 | stomp-websocket 14 | 2.3.5-SNAPSHOT 15 | stomp-websocket 16 | WebJar for stomp-websocket 17 | http://webjars.org 18 | 19 | 20 | 21 | jamesward 22 | James Ward 23 | james@jamesward.com 24 | 25 | 26 | 27 | 28 | 29 | Apache License 2.0 30 | https://github.com/jmesnil/stomp-websocket/blob/master/LICENSE.txt 31 | repo 32 | 33 | 34 | 35 | 36 | http://github.com/webjars/stomp-websocket 37 | scm:git:https://github.com/webjars/stomp-websocket.git 38 | scm:git:https://github.com/webjars/stomp-websocket.git 39 | HEAD 40 | 41 | 42 | 43 | UTF-8 44 | 2.3.4 45 | https://raw.github.com/jmesnil/stomp-websocket/${upstream.version}/lib 46 | ${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version} 47 | 48 | { 49 | "paths": { 50 | "stomp-websocket": "stomp" 51 | }, 52 | "shim": { 53 | "stomp-websocket": { 54 | "exports": "Stomp" 55 | } 56 | } 57 | } 58 | 59 | 60 | 61 | 62 | 63 | 64 | org.codehaus.mojo 65 | wagon-maven-plugin 66 | 1.0-beta-4 67 | 68 | 69 | download-full-js 70 | process-resources 71 | 72 | download-single 73 | 74 | 75 | ${upstream.url} 76 | stomp.js 77 | ${destDir} 78 | 79 | 80 | 81 | download-min-js 82 | process-resources 83 | 84 | download-single 85 | 86 | 87 | ${upstream.url} 88 | stomp.min.js 89 | ${destDir} 90 | 91 | 92 | 93 | 94 | 95 | 96 | org.apache.maven.plugins 97 | maven-release-plugin 98 | 2.5.1 99 | 100 | 101 | 102 | org.sonatype.plugins 103 | nexus-staging-maven-plugin 104 | 1.6.5 105 | true 106 | 107 | sonatype-nexus-staging 108 | https://oss.sonatype.org/ 109 | true 110 | 111 | 112 | 113 | 114 | 115 | 116 | --------------------------------------------------------------------------------