Blog

Monday, 1 October 2012

Contest for new company page design

We are happy to announce that contest for new design of our company page has finished!

Tuesday, 18 September 2012

POM Sorter 1.0.2 is out

This release let's you configure how each tag's contents will be sorted.

Downloads: http://plugins.intellij.net/plugin?pr=idea&pluginId=7084

Tuesday, 7 August 2012

POM Sorter IntelliJ Idea plugin

Do you like Rearranger plugin for IntelliJ Idea, the one that helps you sort members of Java classes? Don't you miss such great functionality for Maven project descriptor? We've got something for you. The Pom Sorter plugin.

Monday, 23 July 2012

Reliable mail delivery in Seam

If you need to send emails form your application then there is nice seam-mail, a CDI extension. However frequently you need to assure that some email gets delivered. Let's consider registration process. User fills in their email and new password, the application should then send him mail with activation code. What if the mail server is currently down or for some other reason the mail cannot be delivered at the moment?

Monday, 18 June 2012

Mock conversation

Mock-contexts-extension allows you to turn conversation and view scopes on for your Arquillian tests. However the Conversation implementation in Weld is so tightly bound to Weld that you need to create mock alternative for it.

Thursday, 31 May 2012

seam3-persistence-framework 1.0.2 is out

We've fixed problems with DynEntityQuery not being refreshed when dynamic parameter value change. Artifacts are available at: http://artifactory.it-crowd.com.pl/repo

Monday, 28 May 2012

Mock FacesContext in Arquillian

Recently I wanted to test my backing beans for JSF views. Unfortunately the EntityQuery (from seam3-persistence-framework) is very tightly bound to JSF api, particularly it depends on FacesContext.getCurrentInstance().getELContext(). The problem is that the tests are not associated with JSF requests, so FacesContext.getCurrentInstance() returns null.

I decided to extend mock-contexts-extension to help mocking FacesContext.