is it possible to convert via wro4j maven plugin imported into css image to uridata in build time? I see on their wiki run-time solution but I would like to have static files already converted. Or maybe somebody knows another plugin which can do this?
Wro4j image to datauri conversion in build-time
237 Views Asked by Daniel Engel At
1
There are 1 best solutions below
Related Questions in MAVEN
- Auto reload with play2
- maven pom.xml dependencies order vs classpath/build path order
- How to ignore or fix the duplicate classes warning?
- Scala Eclipse IDE compiler giving errors until "clean" is run
- How to run multiple "mvn test"-commands from batch file?
- Not able to send email in java using SMTP,its blocked by firewall in my office.Is there any other method by which we can send mail?
- javaCV Maven project
- Logging error when executing Maven SonarQube plugin
- Gradle: Override transitive dependency by version classifier
- Why we need maven if there's javac that compiles the code?
- jar file input == null while java app is working
- JPA and web app
- Test Selector Plugin Jenkins returns No tests were executed
- Eclipse OSGI unsatisfied constraint
- GlassFish 4.0 CDI deployment failure + Apache Spark
Related Questions in DATA-URI
- Can we add some additional information in a file?
- How to convert a MultiPartFile (image) to a data URI?
- data-url with x-x509-user-cert does not work
- Can I to make svg icon using data-uri with built-in data for the properties of the background?
- Firefox inserts escape characters in SVG — XML declaration not well-formed
- Why would you use link tags with a data/css HREF instead of using a style tag?
- How to send a large datauri of an image to express server
- Adding HTML5 audio as embedded mp3 data URI
- Is there any way to suggest a file name with a data URI?
- Upload image with datauri as source empty on ajax post call
- Data URI's slow down page
- Save datastream received as unit8array as pdf to filesystem on the front end
- What to use instead of dontReplace for constructing a data URI?
- iPhone - Data URI's (css background images) only work when connected to WIFI
- Force Save As box in Chrome / Safari when clicking on a Data URI anchor link
Related Questions in WRO4J
- How to have WRO answer with a http 304 not modified?
- Wro-maven plugin - CSS changes are overwritten
- wro4j & m2e Eclipse not compiling LESS
- Error while creating ro.isdc.wro.extensions.manager.ExtensionsConfigurableWroManagerFactory
- wro4j and browser caching
- Can´t use AngularJS Charts when building with WRO4J
- Load script in html based on cookie
- "TypeError: module is undefined" when combining all of my modules into a minified js file
- MVN issue with an old Java codebase -- clashing dependencies
- import css.map files with wro4j
- wro4j-maven-plugin slow performance
- Is there a way to configure wro4j to pick up changed files without restart during development?
- Custom wro4j plugin for Scala's Simple Build Tool
- Eclipse does not reload compiled css while running
- wro4j -- How do you disable aggregation feature in debug mode?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is virtually no difference between run-time solution and build time solution in wro4j. The CssDataUriPreProcessor is responsible for converting image url's into css data uri. In order to use it with maven plugin, just add this processor to the list of processors to be applied. Example:
Notice the "cssDataUri" alais in the list of configured pre processors. Once added, it should be applied for each pre processed resource.