Update POM for debug build
This commit is contained in:
parent
8d9c8d3bbb
commit
523c3a481d
1 changed files with 37 additions and 0 deletions
37
pom.xml
37
pom.xml
|
@ -14,6 +14,7 @@
|
|||
<properties>
|
||||
<flexmojos.version>5.0-beta</flexmojos.version>
|
||||
<flex.sdk.version>4.6.b.23201</flex.sdk.version>
|
||||
<project.config.debug>false</project.config.debug>
|
||||
</properties>
|
||||
|
||||
<issueManagement>
|
||||
|
@ -28,6 +29,36 @@
|
|||
<developerConnection>scm:git:ssh://git@github.com:fljot/Gestouch.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>net.flexmojos.oss</groupId>
|
||||
<artifactId>flexmojos-maven-plugin</artifactId>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<externs>
|
||||
<extern>org.gestouch.utils.log</extern>
|
||||
</externs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>debug</id>
|
||||
<properties>
|
||||
<project.config.debug>true</project.config.debug>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<build>
|
||||
<sourceDirectory>src/</sourceDirectory>
|
||||
|
||||
|
@ -51,6 +82,12 @@
|
|||
<!-- potentially for Apparat. probably useless -->
|
||||
<keepAs3Metadata>Abstract</keepAs3Metadata>
|
||||
</keepAs3Metadatas>
|
||||
<defines>
|
||||
<property>
|
||||
<name>CONFIG::GestouchDebug</name>
|
||||
<value>${project.config.debug}</value>
|
||||
</property>
|
||||
</defines>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
Reference in a new issue