LoginSignup
1
1

More than 5 years have passed since last update.

maven-release-pluginの"release:perform"実行時にdeployしない

Last updated at Posted at 2013-04-17

maven-release-pluginのrelease:perform実行時、特に何もしないとdeployしようとするが、「リリース準備だけしてdeployとかは特にしたくない」みたいなときはgoalにinstallみたいなのを指定しておけばいいらしい。

pom.xml
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-release-plugin</artifactId>
  <version>2.4.1</version>
  <configuration>
        <releaseProfiles>release</releaseProfiles>
        <goals>install</goals> <!-- instead of 'deploy' -->
   </configuration>
</plugin>

正直他にいい方法があるかもしれないが、これでやりたいことはできる。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1