Ben Fortuna

Results 182 comments of Ben Fortuna

Yes, can confirm if I run `docker login` first the push will be successful. However if it can be integrated into the plugin it would save some trouble configuring automated...

Is there an alternative approach to depending on the `google-webfonts-helper`, as author indicates you shouldn't rely on the service.. https://github.com/majodev/google-webfonts-helper/issues/46#issuecomment-376187190

Ok, maybe check the versions of dependencies in your classpath are aligned with those in the gradle.properties: https://github.com/ical4j/ical4j/blob/master/gradle.properties It doesn't have to match exactly, but you should have slf4j-api 1.7.x,...

You may also want to check if your web container has any other versions of slf4j in its classpath. LinkageError can be caused by having the same library loaded in...

If you are including slf4j in your common jars (e.g. tomcat lib directory) then don't include it with the ical4j dependency in your web app. You should only provide the...

So when you include ical4j the transitive dependencies such as slf4j will be automatically included. You need to explicitly exclude this dependency (see gradle docs for how to exclude a...

You need to either add a jcache-compatible cache dependency (e.g. `org.ehcache:ehcache`) or override the cache implementation (see https://github.com/ical4j/ical4j#configuration for overriding `net.fortuna.ical4j.timezone.cache.impl`)

Version is set in git tags. I use a gradle plugin that manages releases by tagging master branch with a version number.

Hi Daniel, Timezones aren't defined by country, but rather follow the Olson DB format of well-known (often capital) cities. So for Portugese time you might use "Europe/Lisbon". Search for Olson...