0

Mavenを使用してgrailsアプリを開発しています。

コマンド「mvn package」の実行中に、バージョン番号の war が生成されます。しかし、バージョン番号なしで戦争を生成し、いくつかの jar を除外したいと考えています。ここに私のpom.xmlがあります

 <?xml version="1.0" encoding="utf-8"?>
<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.brickred</groupId>
    <artifactId>my-grails-demo</artifactId>
    <packaging>grails-app</packaging>
    <version>1.0</version>

    <name>A custom grails project</name>
    <description>A custom grails project</description>
    <url>http://www.myorganization.org</url>

    <properties>
        <grails.version>2.2.2</grails.version>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.grails</groupId>
            <artifactId>grails-dependencies</artifactId>
            <version>${grails.version}</version>
            <type>pom</type>
        </dependency>

        <dependency>
            <groupId>org.grails</groupId>
            <artifactId>grails-plugin-testing</artifactId>
            <version>${grails.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>tomcat</artifactId>
            <version>${grails.version}</version>
            <type>zip</type>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>hibernate</artifactId>
            <version>${grails.version}</version>
            <type>zip</type>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>jquery</artifactId>
            <version>1.8.3</version>
            <type>zip</type>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>cache</artifactId>
            <version>1.0.1</version>
            <type>zip</type>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>resources</artifactId>
            <version>1.1.6</version>
            <type>zip</type>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>database-migration</artifactId>
            <version>1.3.2</version>
            <type>zip</type>
            <scope>runtime</scope>
        </dependency>

        <dependency>
            <groupId>org.grails.plugins</groupId>
            <artifactId>cache</artifactId>
            <version>1.0.1</version>
            <type>zip</type>
            <scope>runtime</scope>
        </dependency>





    </dependencies>

    <build>
        <pluginManagement />

        <plugins>
            <!-- Disables the Maven surefire plugin for Grails applications, as we 
                have our own test runner -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
                <executions>
                    <execution>
                        <id>surefire-it</id>
                        <phase>integration-test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                        <configuration>
                            <skip>false</skip>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <version>2.4.1</version>
                <configuration>
                    <filesets>
                        <fileset>
                            <directory>plugins</directory>
                            <includes>
                                <include>**/*</include>
                            </includes>
                            <followSymlinks>false</followSymlinks>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.grails</groupId>
                <artifactId>grails-maven-plugin</artifactId>
                <version>${grails.version}</version>
                <configuration>
                    <fork></fork>
                </configuration>
                <extensions>true</extensions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1-beta-1</version>
                <configuration>
                    <warName>socialauth-grails-demo</warName>
                    <packagingExcludes> %regex[WEB-INF/lib/.*(?:servlet).*.jar]</packagingExcludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>grails</id>
            <name>grails</name>
            <url>http://repo.grails.org/grails/core</url>
        </repository>
        <repository>
            <id>grails-plugins</id>
            <name>grails-plugins</name>
            <url>http://repo.grails.org/grails/plugins</url>
        </repository>

        <!-- uncomment the following snapshot repository if you want to use snapshot 
            versions of the grails-maven-plugin -->
        <!-- <repository> <id>grails-plugins-snapshots</id> <name>grails-maven-plugins</name> 
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> 
            <enabled>true</enabled> </snapshots> </repository> -->
    </repositories>

    <!-- uncomment the following snapshot repository if you want to use snapshot 
        versions of the grails-maven-plugin -->
    <!-- <pluginRepositories> <pluginRepository> <id>grails-maven-plugins</id> 
        <name>grails-maven-plugins</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> 
        <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> -->

    <profiles>
        <profile>
            <id>tools</id>
            <activation>
                <property>
                    <name>java.vendor</name>
                    <value>Sun Microsystems Inc.</value>
                </property>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>com.sun</groupId>
                    <artifactId>tools</artifactId>
                    <version>${java.version}</version>
                    <scope>system</scope>
                    <systemPath>${java.home}/../lib/tools.jar</systemPath>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
</project>


mvn パッケージは war my-grails-demo-1.0.war を生成します。バージョンなしで生成する必要があり、servlet.jar も除外したい

4

3 に答える 3

1

依存関係で提供されたスコープを持つ推移的な依存関係である jar を除外できるはずです。

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>3.0</version>
    <scope>provided</scope>
</dependency>

ただし、war プラグインで jar を明示的に除外するには、packagesExcludes を使用できます正規表現に問題がある可能性はありますか?単にpackagingExcludesにjarのコンマリストを渡してみましたか?

バージョン番号 (必須) については、build セクション内の finalName プロパティを使用して、生成された war の名前を変更できます。

<build>
  ...
  <finalName>your final war name</finalName>
于 2013-05-30T16:08:51.493 に答える
1

次のいずれかを実行できます。

  • 使用する場合はmvn package、以下の設定をConfig.groovy
    grails.project.war.file = "target/${yourDesiredName}.war"

  • を使用してパッケージ化することもできますmvn grails:war yourWarName.war

戦争で jar を除外するには、以下を使用しますBuildConfig.groovy

grails.war.resources = { stagingDir ->
    delete(file:"${stagingDir}/WEB-INF/lib/servlet.jar")
}

アドバイス:-mvn installの代わりに使用mvn package

于 2013-05-30T16:10:44.187 に答える
0

BuildConfig.groovy ファイルに次のエントリを作成して、lib フォルダーから jar を削除しています。

grails.war.resources = { stagingDir ->
    new File("${stagingDir}/WEB-INF/lib").eachFileMatch(~/.*(servlet).*.jar/)  {
        f -> f.delete()
    }

}

libフォルダーに異なるバージョンのservlet.jarが表示されるため、正規表現を使用する必要があります。

于 2013-05-31T21:44:46.610 に答える