Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove redundant 'name' and 'packaging' tags from POMs | Alexander Kriegisch | 2021-04-15 | 1 | -2/+0 |
| | | | | | | | If 'name' is identical to 'artifactId' and 'packaging' has the default value 'jar', we can just remove those tags from the POM. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Clean up Maven dependencies using 'dependency:analyze' goal | Alexander Kriegisch | 2021-04-12 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Notably, this change involves a partial revert of @4a5660b3, because we are not using JUnit Jupiter yet but still JUnit 4 tests. See discussion under commit at https://github.com/eclipse/org.aspectj/commit/4a5660b3. Many other warnings - concerning both used undeclared and unused declared dependencies - were eliminated by adding or removing the corresponding dependencies from the POMs. Furthermore, I tried to make sure that some clearly test-scoped dependencies are now actually declared as such, so as to avoid unwanted transitivity bleeding into compile scope and maybe unwanted classes ending up in uber JARs via Maven Shade or Maven Assembly. TODO: I am not so sure why modules other than 'run-all-unit-tests' would depend on test JARs. I hope I broke nothing essential there. As of today, the other modules where I found '<type>test-jar</type>' dependencies are: - ajde - testing - testing-drivers - tests - weaver Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Replace JDT Core system dependency by deployed one | Alexander Kriegisch | 2021-04-09 | 1 | -12/+0 |
| | | | | | | | | | | Get rid of system paths. Instead, rely on JDT Core Shadows to deploy both binary and source JARs to GitHub Packages. The former module directory was deleted completely. Instead, the JARs are redundantly copied into 'libs/jdtcore-aj' in order to be found there by tests and other Ant scripts. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix 'ajdoc' tests for Java 15 build | Alexander Kriegisch | 2021-03-14 | 1 | -8/+8 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix javadoc references to nonexistent fields, classes, or packages | Jerry James | 2020-09-14 | 1 | -3/+0 |
| | |||||
* | Fix misplaced or incorrect javadoc tags | Jerry James | 2020-09-14 | 6 | -10/+9 |
| | |||||
* | Fix misplaced or incorrectly nested HTML tags | Jerry James | 2020-09-14 | 1 | -1/+1 |
| | |||||
* | Fix incorrect HTML entities in javadoc comments | Jerry James | 2020-09-14 | 1 | -1/+1 |
| | |||||
* | Revert to 1.9.7.BUILD-SNAPSHOT | Andy Clement | 2020-08-21 | 1 | -1/+1 |
| | |||||
* | 1.9.7 milestone 1 published | Andy Clement | 2020-08-21 | 1 | -1/+1 |
| | |||||
* | Remove unnecessary interface modifiers | Lars Grefer | 2020-08-17 | 12 | -201/+201 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Merge pull request #10 from larsgrefer/cleanup/pom | Andy Clement | 2020-08-16 | 1 | -1/+0 |
|\ | | | | | Cleanup the Maven pom.xml files | ||||
| * | Remove project.parent.relative path as ../pom.xml is already the default | Lars Grefer | 2020-08-15 | 1 | -1/+0 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Merge branch 'master' into feature/collection-performance | Andy Clement | 2020-08-15 | 20 | -31/+0 |
|\ \ | |||||
| * | | Cleanup unused imports | Lars Grefer | 2020-08-16 | 18 | -19/+0 |
| | | | | | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | | Update to JUnit 4.13 | Lars Grefer | 2020-08-15 | 3 | -12/+0 |
| |/ | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Weaken Collection declarations | Lars Grefer | 2020-08-15 | 2 | -2/+3 |
| | | | | | | | | | | | | 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> | ||||
* | | Collections.sort() can be replaced with List.sort() | Lars Grefer | 2020-08-15 | 2 | -2/+2 |
|/ | | | | | | Reports calls to Collections.sort(list, comparator) which could be replaced with list.sort(comparator). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | lets have maven fail if those tests fail... | Andy Clement | 2020-08-14 | 1 | -23/+42 |
| | |||||
* | Use the diamond operator where possible | Lars Grefer | 2020-08-13 | 6 | -16/+16 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 4 | -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> | ||||
* | 'while' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 1 | -6/+4 |
| | | | | | | Reports while loops which iterate over collections, and can be replaced with an enhanced for loop (i.e. foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 'for' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 23 | -114/+106 |
| | | | | | | 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-SNAPSHOT | Andy Clement | 2020-07-22 | 1 | -1/+1 |
| | |||||
* | AspectJ 1.9.6 final bitsV1_9_6 | Andy Clement | 2020-07-22 | 1 | -1/+1 |
| | |||||
* | polish | Andy Clement | 2019-11-29 | 4 | -472/+477 |
| | |||||
* | polish | Andy Clement | 2019-11-29 | 21 | -132/+170 |
| | |||||
* | Move to 1.9.6.BUILD-SNAPSHOT version | Andy Clement | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | 1.9.5 release versions in pomsV1_9_5 | Andy Clement | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | Update to 1.9.5.BUILD-SNAPSHOT in poms | Andy Clement | 2019-06-03 | 4 | -122/+120 |
| | |||||
* | 1.9.4 POMS | Andy Clement | 2019-05-10 | 1 | -1/+1 |
| | |||||
* | pushed versions to 1.9.4.BUILD-SNAPSHOT | Andy Clement | 2019-04-17 | 1 | -1/+1 |
| | |||||
* | Fix version tagging for info strings | Andy Clement | 2019-02-11 | 1 | -1/+1 |
| | |||||
* | tidyup | Andy Clement | 2019-02-08 | 1 | -2/+10 |
| | |||||
* | move resources to resources tree | Andy Clement | 2019-02-07 | 75 | -0/+0 |
| | |||||
* | temporary fix for jdtcore deps to get mvn clean install behaving | Andy Clement | 2019-02-01 | 1 | -0/+11 |
| | |||||
* | Add module tests back in - but streamlined | Andy Clement | 2019-01-31 | 2 | -14/+39 |
| | |||||
* | mavenizing ajde - done | Andy Clement | 2019-01-29 | 7 | -77/+14 |
| | |||||
* | mavenizing ajde - wip | Andy Clement | 2019-01-29 | 165 | -33/+49 |
| | |||||
* | 1.9.2.RC1 changesV1_9_2_RC1 | Andy Clement | 2018-09-29 | 1 | -5/+3 |
| | |||||
* | added module/modulesourcepath to compiler configuration interface | Andy Clement | 2017-10-20 | 1 | -0/+10 |
| | |||||
* | Various changes to get tests passing on 1.8 and 1.9 | Andy Clement | 2017-09-24 | 1 | -1/+6 |
| | |||||
* | Fix 500035: handling target only binding in @AJ pointcut | Andy Clement | 2016-11-18 | 1 | -1/+1 |
| | |||||
* | enabling AJDT to use annotation processors | Andy Clement | 2014-08-20 | 1 | -0/+10 |
| | |||||
* | generics | aclement | 2011-08-16 | 6 | -525/+505 |
| | |||||
* | make ajde module java5 | aclement | 2011-08-15 | 1 | -0/+1 |
| | |||||
* | minimalModel ON by default. demotion ON by default (for AJDT as well as LTW) | aclement | 2011-08-05 | 1 | -5/+5 |
| | |||||
* | fix cp | aclement | 2011-06-16 | 1 | -3/+0 |
| | |||||
* | 1.6.12.m1 readme | aclement | 2011-06-07 | 1 | -0/+3 |
| | |||||
* | 290741: encoding option on ICompilerConfiguration | aclement | 2011-04-04 | 1 | -0/+4 |
| |