Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
Move jar signing back out to own profile
Browse files Browse the repository at this point in the history
  • Loading branch information
tony19 committed Mar 8, 2014
1 parent f9f0281 commit a161e41
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions pom.xml
Expand Up @@ -259,16 +259,13 @@
</profile>

<profile>
<id>release</id>
<properties>
<!--
To disable debug compilation, debug must be "true" AND
debuglevel must be "none".
http://jira.codehaus.org/browse/MCOMPILER-114
-->
<maven.compiler.debug>true</maven.compiler.debug>
<maven.compiler.debuglevel>none</maven.compiler.debuglevel>
</properties>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
Expand All @@ -289,6 +286,24 @@
</build>
</profile>

<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!--
To disable debug compilation, debug must be "true" AND
debuglevel must be "none".
http://jira.codehaus.org/browse/MCOMPILER-114
-->
<maven.compiler.debug>true</maven.compiler.debug>
<maven.compiler.debuglevel>none</maven.compiler.debuglevel>

<maven.compiler.optimize>true</maven.compiler.optimize>
</properties>
</profile>

<profile>
<id>debug</id>
<properties>
Expand Down

0 comments on commit a161e41

Please sign in to comment.