Maven: how to export project with sources and dependencies

前端 未结 3 607
醉酒成梦
醉酒成梦 2020-12-05 10:06

I have Maven project with dependencies in repo and stuff. I want to \"export\" its sources with all dependencies so that I can successfully open it in IDE without Maven runn

相关标签:
3条回答
  • 2020-12-05 10:47

    Try maven-dependency-plugin with goal copy-dependencies

    <project>
    [...]
    <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <id>copy-dependencies</id>
            <phase>package</phase>
            <goals>
              <goal>copy-dependencies</goal>
            </goals>
            <configuration>
              <outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>false</overWriteSnapshots>
              <overWriteIfNewer>true</overWriteIfNewer>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
    </build>
    [...]
    </project>
    

    PS.
    Are you aware of maven and IDE integration (for Eclipse p.e.)? Maven can generate project for particular IDE and include all dependent jars as variables (pointing to these jars in local repository), so there is no need to use copy dependecies to subfolder.

    0 讨论(0)
  • 2020-12-05 10:55

    Actually, there is nothing that will create a bundle with sources and dependencies out of the box. For this, you'll need to use a combination of the some plugins.

    For dependencies, the Maven 2 Dependency Plugin and its copy-dependencies will help as pointed out by cetnar.

    For sources, you might need the Maven Source Plugin and its source:aggregate goal (or maybe the Maven Assembly Plugin and the pre-defined src descriptor but source:aggregate is handy for multi-modules builds).

    To bind the whole thing together (and maybe unpack sources), I'd use the Maven Assembly Plugin.

    0 讨论(0)
  • 2020-12-05 10:55

    War with sources

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <configuration>
          <webResources>
            <resource>
              <directory>${build.sourceDirectory}</directory>
              <targetPath>src</targetPath>
            </resource>
          </webResources>
        </configuration>
      </plugin>
    
    0 讨论(0)
提交回复
热议问题