|
52 | 52 | <bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6> |
53 | 53 | <bootclasspath.compile>${bootclasspath.java5}</bootclasspath.compile> |
54 | 54 | <bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile> |
55 | | - <antlr3.version>3.5</antlr3.version> |
56 | | - <st4.version>4.0.7</st4.version> |
57 | 55 | <aw1.basedir>${basedir}</aw1.basedir> |
58 | 56 | </properties> |
59 | 57 |
|
|
93 | 91 | <dependency> |
94 | 92 | <groupId>org.antlr</groupId> |
95 | 93 | <artifactId>antlr-runtime</artifactId> |
96 | | - <version>${antlr3.version}</version> |
| 94 | + <version>3.5.1</version> |
97 | 95 | <scope>compile</scope> |
98 | 96 | </dependency> |
99 | 97 | <dependency> |
100 | 98 | <groupId>org.antlr</groupId> |
101 | 99 | <artifactId>antlr</artifactId> |
102 | | - <version>${antlr3.version}</version> |
| 100 | + <version>3.5.1</version> |
| 101 | + <scope>compile</scope> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>org.antlr</groupId> |
| 105 | + <artifactId>stringtemplate</artifactId> |
| 106 | + <version>3.2.1</version> |
103 | 107 | <scope>compile</scope> |
104 | 108 | </dependency> |
105 | 109 | <dependency> |
|
129 | 133 | <execution> |
130 | 134 | <id>default-compile</id> |
131 | 135 | <configuration> |
132 | | - <compilerArguments> |
133 | | - <bootclasspath>${bootclasspath.compile}</bootclasspath> |
134 | | - </compilerArguments> |
| 136 | + <source>1.5</source> |
| 137 | + <target>1.5</target> |
| 138 | + <compilerArgs> |
| 139 | + <arg>-Xlint</arg> |
| 140 | + <arg>-Xlint:-serial</arg> |
| 141 | + <arg>-bootclasspath</arg> |
| 142 | + <arg>${bootclasspath.compile}</arg> |
| 143 | + </compilerArgs> |
135 | 144 | </configuration> |
136 | 145 | </execution> |
137 | 146 | <execution> |
138 | 147 | <id>default-testCompile</id> |
139 | 148 | <configuration> |
140 | | - <compilerArguments> |
141 | | - <bootclasspath>${bootclasspath.testCompile}</bootclasspath> |
142 | | - </compilerArguments> |
| 149 | + <source>1.6</source> |
| 150 | + <target>1.6</target> |
| 151 | + <compilerArgs> |
| 152 | + <arg>-Xlint</arg> |
| 153 | + <arg>-Xlint:-serial</arg> |
| 154 | + <arg>-bootclasspath</arg> |
| 155 | + <arg>${bootclasspath.testCompile}</arg> |
| 156 | + </compilerArgs> |
143 | 157 | </configuration> |
144 | 158 | </execution> |
145 | 159 | </executions> |
|
148 | 162 | <plugin> |
149 | 163 | <groupId>org.apache.maven.plugins</groupId> |
150 | 164 | <artifactId>maven-shade-plugin</artifactId> |
151 | | - <version>2.0</version> |
| 165 | + <version>2.1</version> |
152 | 166 | <inherited>false</inherited> |
153 | 167 | <executions> |
154 | 168 | <execution> |
|
186 | 200 | <plugin> |
187 | 201 | <groupId>org.codehaus.mojo</groupId> |
188 | 202 | <artifactId>osxappbundle-maven-plugin</artifactId> |
189 | | - <version>1.0-alpha-2</version> |
| 203 | + <version>1.0-alpha-1</version> |
190 | 204 | <configuration> |
191 | 205 | <mainClass>org.antlr.works.IDE</mainClass> |
192 | 206 | <javaApplicationStub>${basedir}/osx/ANTLRWorks.app/Contents/MacOS/JavaApplicationStub</javaApplicationStub> |
193 | | - <dictionaryFile>${aw1.basedir}/osx/Info.plist</dictionaryFile> |
| 207 | + <dictionaryFile>osx/Info.plist</dictionaryFile> |
194 | 208 | <iconFile>${basedir}/osx/ANTLRWorks.app/Contents/Resources/app.icns</iconFile> |
195 | 209 | <jvmVersion>1.5+</jvmVersion> |
196 | 210 | <additionalResources> |
|
281 | 295 | <plugin> |
282 | 296 | <groupId>org.apache.maven.plugins</groupId> |
283 | 297 | <artifactId>maven-compiler-plugin</artifactId> |
284 | | - <version>3.0</version> |
| 298 | + <version>3.1</version> |
285 | 299 | <configuration> |
286 | 300 | <sourceDirectory>src</sourceDirectory> |
287 | 301 | <showWarnings>true</showWarnings> |
288 | 302 | <showDeprecation>true</showDeprecation> |
| 303 | + <compilerArgs> |
| 304 | + <arg>-Xlint</arg> |
| 305 | + <arg>-Xlint:-serial</arg> |
| 306 | + </compilerArgs> |
289 | 307 | </configuration> |
290 | 308 |
|
291 | 309 | <executions> |
|
294 | 312 | <configuration> |
295 | 313 | <source>1.5</source> |
296 | 314 | <target>1.5</target> |
297 | | - <compilerArgument>-Xlint:-serial</compilerArgument> |
298 | | - <compilerArguments> |
299 | | - <Xlint/> |
300 | | - </compilerArguments> |
301 | 315 | </configuration> |
302 | 316 | </execution> |
303 | 317 | <execution> |
304 | 318 | <id>default-testCompile</id> |
305 | 319 | <configuration> |
306 | 320 | <source>1.6</source> |
307 | 321 | <target>1.6</target> |
308 | | - <compilerArgument>-Xlint:-serial</compilerArgument> |
309 | | - <compilerArguments> |
310 | | - <Xlint/> |
311 | | - </compilerArguments> |
312 | 322 | </configuration> |
313 | 323 | </execution> |
314 | 324 | </executions> |
315 | 325 | </plugin> |
316 | 326 |
|
| 327 | + <plugin> |
| 328 | + <groupId>org.apache.maven.plugins</groupId> |
| 329 | + <artifactId>maven-release-plugin</artifactId> |
| 330 | + <!-- override the version inherited from the parent --> |
| 331 | + <version>2.4.1</version> |
| 332 | + <configuration> |
| 333 | + <arguments>-Psonatype-oss-release ${release.arguments}</arguments> |
| 334 | + </configuration> |
| 335 | + </plugin> |
| 336 | + |
317 | 337 | <plugin> |
318 | 338 | <groupId>org.apache.maven.plugins</groupId> |
319 | 339 | <artifactId>maven-surefire-plugin</artifactId> |
320 | | - <version>2.12.4</version> |
| 340 | + <!-- override the version inherited from the parent --> |
| 341 | + <version>2.16</version> |
321 | 342 | </plugin> |
322 | 343 |
|
323 | 344 | <plugin> |
|
342 | 363 | <groupId>org.apache.maven.plugins</groupId> |
343 | 364 | <artifactId>maven-javadoc-plugin</artifactId> |
344 | 365 | <!-- override the version inherited from the parent --> |
345 | | - <version>2.9</version> |
| 366 | + <version>2.9.1</version> |
346 | 367 | <configuration> |
347 | 368 | <quiet>true</quiet> |
348 | 369 | </configuration> |
|
0 commit comments