0

Maven エクスポート スクリプト (私が作成したものではありません) があり、対応するソースも追加したいと考えています。ビルド スクリプトは、「maven-source-plugin」を使用して 2 つの出力を生成します: .jar と -sources.jar で、どちらも同じ出力フォルダーに隣り合って存在します。これまでのところ、jar のみがコピーされています。スクリプトで -sources.jar ファイルをその jar ファイルの隣に配置する必要があります。

ビルドポン:

<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.mytest</groupId>
    <artifactId>my-parent</artifactId>
    <version>6.0.00-SNAPSHOT</version>
    <packaging>pom</packaging>
    <name>my-parent</name>
    <url>http://maven.apache.org</url>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <assembly.format>dir</assembly.format>
        <my.repository.rootUrl>http://maven.my.com</my.repository.rootUrl>
    </properties>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
    </dependencies>
    <dependencyManagement>
        <dependencies>
            .
            .
            .
        </dependencies>
    </dependencyManagement>
    <build> 
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <target>1.6</target>
                    <source>1.6</source>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <modules>
    .
    .
    .
    </modules>
    <repositories>
    .
    .
    .
    </repositories>
    <distributionManagement>
    .
    .
    .
    </distributionManagement>
    <pluginRepositories>
    .
    .
    .
    </pluginRepositories>
    <organization>
        <name>My</name>
    </organization>
    <profiles>
        <profile>
            <id>dist</id>
            <modules>
                <module>../my-assembly/my-runner</module>
            </modules>
        </profile>
    </profiles>
</project>

エクスポートポン:

<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.mytest</groupId>
        <artifactId>my-parent</artifactId>
        <version>6.0.00-SNAPSHOT</version>
        <relativePath>../../my-parent</relativePath>
    </parent>
    <artifactId>my-runner</artifactId>
    <dependencies>
        .
        .
        .
    </dependencies>

    <packaging>jar</packaging>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.3</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <id>create-runner</id>
                        <phase>package</phase>
                        <configuration>
                            <finalName>runner</finalName>
                                <appendAssemblyId>false</appendAssemblyId>
                            <descriptors>
                                    <descriptor>src/main/assembly/runner.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

ランナー ファイル (エクスポート pom によって参照される):

<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
    <formats>
        <format>tar.gz</format>
        <format>zip</format>
        <format>dir</format>
    </formats>
    <id>runner</id>
    <dependencySets>
        .
        .
        .
        <dependencySet>
            <outputDirectory>lib</outputDirectory>
            <outputFileNameMapping>${artifact.artifactId}.${artifact.extension}    </outputFileNameMapping>
            <includes>
                <include>org.mytest:*:jar</include>
                <include>org.mytest.systemobjects:*:jar</include>
            </includes>
            <excludes>
                <exclude>*:my-services-so:*</exclude>
                <exclude>*:my-services-tests:*</exclude>
                <exclude>*:my-runner:*</exclude>
            </excludes>
        </dependencySet>
    </dependencySets>
    <fileSets>
    .
    .
    .
    </fileSets>
</assembly>

前もって感謝します!

4

2 に答える 2