aboutsummaryrefslogtreecommitdiffstats
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* Allow year 2021 in Checklics.LicenseAlexander Kriegisch2021-03-141-17/+7
| | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Support Windows 10 and Windows Server 2016/2019 in installerAlexander Kriegisch2021-03-041-2/+4
| | | | | | | | Those versions were not detected until now, which lead to bogus Windows batch files forwarding only 9 Ajc parameters to the Java process via "%1 %2 %3 %4 %5 %6 %7 %8 %9" instead of "%*". Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Revert to 1.9.7.BUILD-SNAPSHOTAndy Clement2020-08-211-1/+1
|
* 1.9.7 milestone 1 publishedAndy Clement2020-08-216-13/+48
|
* Merge pull request #10 from larsgrefer/cleanup/pomAndy Clement2020-08-161-1/+0
|\ | | | | Cleanup the Maven pom.xml files
| * Remove project.parent.relative path as ../pom.xml is already the defaultLars Grefer2020-08-151-1/+0
| | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Merge branch 'master' into feature/collection-performanceAndy Clement2020-08-155-6/+0
|\ \
| * | Cleanup unused importsLars Grefer2020-08-166-7/+0
| |/ | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Weaken Collection declarationsLars Grefer2020-08-159-19/+16
| | | | | | | | | | | | Reports on declarations of Collection variables made by using the collection class as the type, rather than an appropriate interface. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Redundant Collection.addAll() callLars Grefer2020-08-152-4/+2
| | | | | | | | | | | | Reports Collection.addAll() and Map.putAll() calls after instantiation of a collection using a constructor call without arguments. Such constructs can be replaced with a single call to a parametrized constructor which simplifies code. Also for some collections the replacement might be more performant. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Collection.toArray() call styleLars Grefer2020-08-151-2/+2
| | | | | | | | | | | | | | There are two styles to convert a collection to an array: either using a pre-sized array (like c.toArray(new String[c.size()])) or using an empty array (like c.toArray(new String[0]). In older Java versions using pre-sized array was recommended, as the reflection call which is necessary to create an array of proper size was quite slow. However since late updates of OpenJDK 6 this call was intrinsified, making the performance of the empty array version the same and sometimes even better, compared to the pre-sized version. Also passing pre-sized array is dangerous for a concurrent or synchronized collection as a data race is possible between the size and toArray call which may result in extra nulls at the end of the array, if the collection was concurrently shrunk during the operation. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Collections.sort() can be replaced with List.sort()Lars Grefer2020-08-151-1/+1
|/ | | | | | Reports calls to Collections.sort(list, comparator) which could be replaced with list.sort(comparator). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* Use the diamond operator where possibleLars Grefer2020-08-1311-38/+38
| | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* 'String.indexOf()' expression is replaceable with 'contains()'Lars Grefer2020-08-084-7/+7
| | | | | | Reports any String.indexOf() expressions which can be replaced with a call to the String.contains() method available in Java 5 and newer. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* 'for' loop replaceable with enhanced 'for' loopLars Grefer2020-08-0813-329/+307
| | | | | | Reports for loops which iterate over collections or arrays, and can be replaced with an enhanced for loop (i.e. the foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* Rev to 1.9.7.BUILD-SNAPSHOTAndy Clement2020-07-221-1/+1
|
* AspectJ 1.9.6 final bitsV1_9_6Andy Clement2020-07-225-7/+40
|
* Update ASM and fix packaging for matcher artifactAndy Clement2020-07-175-11/+51
|
* Corrected links inside pomsAndy Clement2020-04-204-0/+100
|
* Include JDTCore for Java14Andy Clement2020-04-201-7/+7
|
* polishAndy Clement2019-11-284-22/+20
|
* Move to 1.9.6.BUILD-SNAPSHOT versionAndy Clement2019-11-2812-306/+325
|
* 1.9.5 release versions in pomsV1_9_5Andy Clement2019-11-281-1/+1
|
* Update to 1.9.5.BUILD-SNAPSHOT in pomsAndy Clement2019-06-031-1/+1
|
* 1.9.4 POMSAndy Clement2019-05-101-1/+1
|
* pushed versions to 1.9.4.BUILD-SNAPSHOTAndy Clement2019-04-171-1/+1
|
* Fix path separator for windowsAndy Clement2019-03-041-1/+1
|
* Fix version tagging for info stringsAndy Clement2019-02-111-0/+3
|
* tidyup - last bits of maven stuffAndy Clement2019-02-081-20/+20
|
* tidyupAndy Clement2019-02-0812-33/+252
|
* Fix getSpecFile() to work with URLs and adjust installer unpackerAndy Clement2019-02-081-8/+32
|
* mavenizing build - doneAndy Clement2019-02-0125-12/+23
|
* mavenizing build - wipAndy Clement2019-02-0137-41/+33
|
* 1.9.3 snapshot updatesAndy Clement2019-01-213-3/+3
|
* better handling for 1.8 modulesAndy Clement2018-10-151-15/+22
|
* reset to 0 size to trigger it getting builtAndy Clement2018-03-091-0/+0
|
* Bug#531694: generate more optional thisJoinPoint construction codeAndy Clement2018-03-092-0/+3
| | | | | | | This commit introduces some new methods into the runtime Factory class and modifies code generation to use them (and to use the form of the LDC bytecode that loads class constants).
* Updates for 1.9.0.RC4 - latest JDTV1_9_0_RC4Andy Clement2018-02-213-3/+3
|
* updated for 2018Andy Clement2018-02-141-2/+8
|
* 1.9.0 updateAndy Clement2017-10-201-2/+2
|
* Switched from diamond to specific typesAndy Clement2017-10-203-8/+8
|
* Fix use of diamond and update versions to 1.9Andy Clement2017-10-209-32/+31
|
* Update to beta 7Andy Clement2017-09-273-3/+3
|
* Bring Java9 branch in line with 1.8.11 progressAndy Clement2017-09-2112-145/+151
|\
| * reduced min Java version to 1.6Andy Clement2016-12-161-2/+3
| |
| * fix warnings in build - support .isJava8 option in buildV1_8_10Andy Clement2016-12-091-4/+14
| |
| * Polishing for 1.8.10 releaseAndy Clement2016-12-081-2/+2
| | | | | | | | | | - reduced build level from 8 to 7 so that the weaver can be used on Java7. - minor readme tweaks
| * added 2016/2017 to yearsAndy Clement2016-12-021-1/+2
| |
| * Fix 500035: handling target only binding in @AJ pointcutAndy Clement2016-11-183-3/+3
| |
| * Upgraded to new JDT compiler - neon.1 and a bitAndy Clement2016-11-0712-139/+133
| |