Archive

Posts Tagged ‘Maven’

Maven2 detractors are right

May 3rd, 2009

There is a crisis going on within the Maven community. Some think that Maven has become something too complicated, too difficult to maintain and evolve. I say it loud (even if few people care): I fully support these detractors. Read more…

Blog

Formation Intégration Continue chez Valtech les 6,7 et 8 février

January 11th, 2008

Valtech Training organise une formation sur les principes de l’usine logicielle et de l’intégration continue.

Au programme : Maven, CruiseControl, Hudson, Subversion, …

Plus de détails sur le site de Valtech Training.

Blog, Valtech Blog , , , , , ,

GWT 1.4.59-RC2 and Maven2

August 24th, 2007

Gwt 1.4.59-RC2 was just released. If you use Maven2 to build your project, this latest version can be found on xi8ix repository.

Here is the configuration:

<repositories>
    <repository>
        <id>xi8ix</id>
        <url>http://maven.xi8ix.org/</url>
    </repository>
</repositories>
<dependency>
    <groupId>com.google</groupId>
    <artifactId>gwt-user</artifactId>
    <version>1.4.59-RC2</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>com.google</groupId>
    <artifactId>gwt-servlet</artifactId>
    <version>1.4.59-RC2</version>
</dependency>

I had to tweak a few things in my SpringDispatchService. Maybe it’s time to find a more stable solution…

Blog, Valtech Blog ,