├── .gitignore ├── README.md ├── src └── main │ └── resources │ └── material-icons.css └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | /*.iml 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | WebJar for material-design-icons 2 | 3 | More info: http://webjars.org 4 | 5 | Upstream: https://github.com/google/material-design-icons 6 | -------------------------------------------------------------------------------- /src/main/resources/material-icons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Material Icons'; 3 | font-style: normal; 4 | font-weight: 400; 5 | src: local('Material Icons'), 6 | local('MaterialIcons-Regular'), 7 | url(MaterialIcons-Regular.ttf) format('truetype'); 8 | } 9 | 10 | .material-icons { 11 | font-family: 'Material Icons'; 12 | font-weight: normal; 13 | font-style: normal; 14 | font-size: 24px; /* Preferred icon size */ 15 | display: inline-block; 16 | line-height: 1; 17 | text-transform: none; 18 | letter-spacing: normal; 19 | word-wrap: normal; 20 | white-space: nowrap; 21 | direction: ltr; 22 | 23 | /* Support for all WebKit browsers. */ 24 | -webkit-font-smoothing: antialiased; 25 | /* Support for Safari and Chrome. */ 26 | text-rendering: optimizeLegibility; 27 | 28 | /* Support for Firefox. */ 29 | -moz-osx-font-smoothing: grayscale; 30 | 31 | /* Support for IE. */ 32 | font-feature-settings: 'liga'; 33 | } 34 | -------------------------------------------------------------------------------- /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 | material-design-icons 14 | 4.0.1-SNAPSHOT 15 | material-design-icons 16 | WebJar for material-design-icons 17 | http://webjars.org 18 | 19 | 20 | UTF-8 21 | 4.0.0 22 | https://github.com/google/material-design-icons/archive/${upstream.version}.zip 23 | ${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${project.version} 24 | ${project.artifactId}-${upstream.version}/font 25 | 26 | { 27 | "paths": { 28 | "material-design-icons": "material-design-icons" 29 | } 30 | } 31 | 32 | 33 | 34 | 35 | 36 | mandar-k 37 | Mandar Kawtakwar 38 | 39 | 40 | 41 | 42 | 43 | 44 | Apache 2.0 45 | https://github.com/google/material-design-icons/blob/master/LICENSE 46 | repo 47 | 48 | 49 | 50 | 51 | http://github.com/webjars/material-design-icons 52 | scm:git:https://github.com/webjars/material-design-icons.git 53 | scm:git:https://github.com/webjars/material-design-icons.git 54 | HEAD 55 | 56 | 57 | 58 | 59 | 60 | org.apache.maven.plugins 61 | maven-antrun-plugin 62 | 1.8 63 | 64 | 65 | process-resources 66 | run 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | org.apache.maven.plugins 89 | maven-resources-plugin 90 | 3.2.0 91 | 92 | ${destDir} 93 | 94 | 95 | 96 | 97 | org.apache.maven.plugins 98 | maven-release-plugin 99 | 2.5.3 100 | 101 | 102 | 103 | org.sonatype.plugins 104 | nexus-staging-maven-plugin 105 | 1.6.6 106 | true 107 | 108 | sonatype-nexus-staging 109 | https://oss.sonatype.org/ 110 | true 111 | 112 | 113 | 114 | 115 | 116 | 117 | --------------------------------------------------------------------------------