I create a simple project with;

  mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app

Then I edited the pom, and added the following profile;

   <profiles>
        <profile>
          <activation>
            <os>
              <name>sunos</name>
              <arch>sparc</arch>
            </os>
          </activation>
          <properties>
              <artifactId>my-app-withasuffix</artifactId>
          </properties>
        </profile>
   </profiles>

Then I did a 'mvn install'.  I see something unexpected when the
install:install happens. The jar built in my project workspace is
correctly named, but the install:install changes it to an incorrect
name.  

  [INFO] [jar:jar]
  [INFO] Building
jar: /export/home/cbrown/junk/my-app/target/my-app-withasuffix-1.0-SNAPSHOT.jar
  [INFO] [install:install]
  [INFO]
Installing 
/export/home/cbrown/junk/my-app/target/my-app-withasuffix-1.0-SNAPSHOT.jar to 
/export/home/cbrown/.m2/repository/com/mycompany/app/my-app/1.0-SNAPSHOT/my-app-1.0-SNAPSHOT.jar

Is this a maven bug, or am I missing a nuance of maven?



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to