disable the execution: default-jar

后端 未结 2 1402
慢半拍i
慢半拍i 2020-12-01 18:40

i am using maven assembly plugin to pack a jar file. But when i run mvn package, maven always trigger the [jar:jar {execution: default-jar}] to create a defaul

相关标签:
2条回答
  • 2020-12-01 18:48

    (...) So i will have 2 jar files (one created by assembly plugin and one created by maven jar which i dont want to be created).

    Looks like you're doing pretty complicated things. Maybe Maven is not the right tool in your case.

    How can I turn off the execution: default-jar.

    You can set the <phase> of the corresponding execution to something unknown, like none:

      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <executions>
          <execution>
            <id>default-jar</id>
            <phase>none</phase>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2</version>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
        <executions>
          <execution>
            <id>make-assembly</id>
            <!-- this is used for inheritance merges -->
            <phase>package</phase>
            <!-- append to the packaging phase. -->
            <goals>
              <goal>single</goal>
              <!-- goals == mojos -->
            </goals>
          </execution>
        </executions>
      </plugin>
    

    This seems to work as long as you're providing something else to be installed, like an assembly (I only tested install). But of course, this is a hack.

    0 讨论(0)
  • 2020-12-01 19:09

    While not a direct answer to the question, you could exclude the jar created by maven jar using <useProjectArtifact>false</useProjectArtifact>

    0 讨论(0)
提交回复
热议问题