Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having read about every posting and question that I can find, I'm stumped on finding a better way than just using profiles of doing the following.

I need to take the same set of modules, and compile them for vastly different architectures (J2ME vs. J2SE), they need different dependencies for some libraries, and they need different source/target/debug settings at compilation time.

Using profiles and classifiers, I can do this by running with one profile, cleaning, and running a build with the other profile. The classifiers sort out the results. However, if you just change profiles and rebuild, it won't clean on it's own, it requires multiple running of maven against the super-pom, and it won't allow you to enable multiple profiles at the same time (and the resultant mess when you do is pretty ugly).

Could I do something using attached artifacts and forcing the compile and jar steps to run multiple times?

The javac options are really the kicker: (using profiles for the dependencies doesn't cause any issues)

for J2ME:
source=1.4
target=1.4
-g:source

for J2ME debugging
source=1.4
target=1.4

for J2SE
source=1.5
target=1.5

share|improve this question
I really want to help. Can I get a little more information? Are you needing multiple versions of each module? Is there a "parent" artifact that you are trying to have multiple versions of, like a JAR file for J2ME/J2ME-debug/J2SE. – DaShaun Mar 2 '11 at 0:24
Yes, every jar (multi-module project) needs to be compiled with both settings. I'm using a top-level pom to drive all the profiles and compiler settings, and it references all the individual jars as modules. It also drives the dependencies, but that's mostly a runtime issue (I need different versions of a certain jar for J2ME vs. J2SE), and not nearly as problematic as the compilation issue is. – Woody Mar 2 '11 at 0:45
btw, I've tried executions as well, but both compilation executions are executed, and then both packaging executions are executed, so the resultant jars all have identical contents. – Woody Mar 2 '11 at 0:57
Can u share your pom.xml details, how you have handled this? – user170114 Apr 27 '11 at 5:38
I think this kind of situation is exactly what profiles are for. – Jesse Webb Jun 21 '11 at 14:45
show 2 more comments

1 Answer

Could you explicitly invoke the compiler plugin Maven Compiler Plugin and then define multiple executions. Some thing like

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.2</version>
    <executions>
        <execution>
          <id>compile1</id>
          <phase>generate-resources</phase>
          <goals>
              <goal>compile</goal>
          </goals>
          <configuration>
                <verbose>true</verbose>
                <fork>true</fork>
                <executable><!-- path-to-javac --></executable>
                <compilerVersion>1.3</compilerVersion>
            </configuration>
       </execution>
       <execution>
          <id>compile1</id>
          <phase>generate-resources</phase>
          <goals>
              <goal>compile</goal>
          </goals>
          <configuration>
                <verbose>true</verbose>
                <fork>true</fork>
                <executable><!-- path-to-javac --></executable>
                <compilerVersion>1.3</compilerVersion>
            </configuration>
       </execution>
   </executions>
  </plugin>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.