Update #1
I am not sure if this a good solution, but as quick workaround i was able to get it built on maven-2.x/Idea by downgrading JFace from 3.3.0-I20070606-0010 to 3.2.1-M20060908-1000
Original Message
i am trying to develop SWT/JFace application with IntelliJ Idea 11.0.2 and Maven. The problem is:
Idea uses internally something that looks like maven-2.x API, so it cannot handle properly suffixed versions (like "1.0-v666999" instead of plain "1.0") in version ranges, that are used in org.eclipse:jface maven artifact. However, maven-3.0 can handle them properly with ease.
So, the mutually-exclusive questions are:
- How to tune Idea to use maven-3.0 as internal maven engine (so it could resolve all imports properly)
- How to "workaround" such version suffixes with maven-2.x tools so idea, JFace maven artifacts and maven itself could all play nicely together?
- Is there a way to "map" versions for maven, like "1.0-v666999" -> "1.0" ?
- Is there a way to force usage of specific version of artifact?
- Your ideas - ?
Here is example pom.xml that uses JFace which uses ranged versions:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>repotest</groupId>
<artifactId>repotest</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Archetype - repotest</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>${swt.groupId}</groupId>
<artifactId>${swt.artifactId}</artifactId>
<version>3.3.0-v3346</version>
</dependency>
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>jface</artifactId>
<version>3.3.0-I20070606-0010</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>mac</id>
<activation>
<os>
<name>mac os x</name>
</os>
</activation>
<properties>
<swt.groupId>org.eclipse.swt.carbon</swt.groupId>
<swt.artifactId>macosx</swt.artifactId>
</properties>
</profile>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<swt.groupId>org.eclipse.swt.win32.win32</swt.groupId>
<swt.artifactId>x86</swt.artifactId>
</properties>
</profile>
<profile>
<id>unix</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<properties>
<swt.groupId>org.eclipse.swt.gtk.linux</swt.groupId>
<swt.artifactId>x86</swt.artifactId>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>repotest.RootWindow</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
And here is the src/main/java/repotest/RootWindow.java file used by this pom.xml:
package repotest;
import org.eclipse.swt.widgets.Display;
import org.eclipse.jface.window.ApplicationWindow;
public class RootWindow extends ApplicationWindow {
public static void main(String[] args) {
ApplicationWindow rootWindow = new RootWindow();
rootWindow.setBlockOnOpen(true);
rootWindow.open();
Display.getCurrent().dispose();
}
public RootWindow() {
super(null);
}
}