You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Arnaud HERITIER <ah...@gmail.com> on 2009/04/07 07:17:59 UTC

[ANN] IDLJ Maven Plugin 1.1 Released

  The Mojo team is pleased to announce the release of the IDLJ Maven
Plugin, version 1.1
  This plugin will process all corba *.idl files in the
sourceDirectory into a common generated sources output directory. This
will occur during the generate-sources phase and the sources directory
will be added to the project for the compile phase. The plugin
supports also to generate test sources from idl files.
http://mojo.codehaus.org/idlj-maven-plugin/

  You could run 'mvn -up' to get the latest version of this plugin, or
specify the version in your project's plugin configuration:


<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>idlj-maven-plugin</artifactId>
          <version>1.1</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>idlj-maven-plugin</artifactId>
        <version>1.1</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

This new version only fixes new issues and doesn't add new features but we
prefered to bump the minor version because we changed many lines of code.

Issues fixed are :

    * [MIDLJ-1] - IBM JVM not recognised
    * [MIDLJ-6] - Plugin doesn't fail if parsing of IDL fails
    * [MIDLJ-7] - IDLs in sub-directories are always recompiled
    * [MIDLJ-8] - Generated java files not found by java compiler
    * [MIDLJ-9] - IDLJ fails on unix with absolute path if you don't
have the right to write in a parent directory. Replace absolute paths
in the command line by relative paths


Enjoy,

-The Mojo team


-- 
Arnaud