我想通过使用maven-build-helper-plugin
regex-property
目标将Maven POM版本转换为有效的GAE版本字符串(小写,仅字母数字字符和下划线)。
因此在POM中,我试图这样做:
<groupId>foobar.tests</groupId>
<artifactId>version-test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>compute-gae-version</id>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>gae.version</name>
<regex>[^A-Za-z0-9]+</regex>
<value>${project.version}</value>
<replacement>-</replacement>
<failIfNoMatch>false</failIfNoMatch>
<toLowerCase>true</toLowerCase>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<deploy.version>${gae.version}</deploy.version>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1</version>
</plugin>
</plugins>
</build>
<dependencies>
[...]
</dependencies>
当然不行,除了:应用程序使用默认的时间戳计算版本标签进行部署。我了解这是因为AppEngine插件的configuration
块会在构建帮助程序运行之前得到较早的评估。
是否可以解决此问题?
答案 0 :(得分:1)
我相信这与this帖子中的问题相同。
按照fboulay的建议,将配置块移出执行块,并使用mvn build-helper:regex-property appengine:deploy
部署GAE应用程序版本。