|
21 | 21 | <!-- Common plugin settings --> |
22 | 22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 23 | <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding> |
24 | | - <maven.test.failure.ignore>true</maven.test.failure.ignore> |
| 24 | + <maven.test.failure.ignore>false</maven.test.failure.ignore> |
25 | 25 | <!-- vscaladoc settings --> |
26 | 26 | <maven.scaladoc.vscaladocVersion>1.2-m1</maven.scaladoc.vscaladocVersion> |
27 | 27 | <vscaladoc.links.liftweb.pathsufix>scaladocs/</vscaladoc.links.liftweb.pathsufix> |
|
134 | 134 | <scalaVersion>${scala.compiler}</scalaVersion> |
135 | 135 | <charset>${project.build.sourceEncoding}</charset> |
136 | 136 | <displayCmd>true</displayCmd> |
| 137 | + <recompileMode>incremental</recompileMode> |
| 138 | + <useZincServer>true</useZincServer> |
137 | 139 | <jvmArgs> |
138 | 140 | <jvmArg>-DpackageLinkDefs=file://${project.build.directory}/packageLinkDefs.properties</jvmArg> |
139 | | - <jvmArg>-Xms64m</jvmArg> |
140 | | - <jvmArg>-Xmx1024m</jvmArg> |
| 141 | + <jvmArg>-Xms512m</jvmArg> |
| 142 | + <jvmArg>-Xmx2G</jvmArg> |
| 143 | + <jvmArg>-XX:+TieredCompilation</jvmArg> |
| 144 | + <jvmArg>-XX:TieredStopAtLevel=1</jvmArg> |
141 | 145 | </jvmArgs> |
142 | 146 | <args> |
143 | 147 | <arg>-unchecked</arg> |
|
147 | 151 | <arg>-deprecation</arg> |
148 | 152 | --> |
149 | 153 | <arg>-Ypartial-unification</arg> |
| 154 | + <!-- Enable language features to suppress warnings --> |
| 155 | + <arg>-language:implicitConversions</arg> |
| 156 | + <arg>-language:reflectiveCalls</arg> |
| 157 | + <arg>-language:postfixOps</arg> |
| 158 | + <!-- Suppress auto-application deprecation warning --> |
| 159 | + <arg>-Wconf:cat=deprecation&msg=auto-application:s</arg> |
150 | 160 | </args> |
151 | 161 | </configuration> |
152 | 162 | <executions> |
|
0 commit comments