diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-10 13:03:30 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-10 13:03:30 +0700 |
commit | 3612f72740b56204ee0d3563171a2c0209c3694c (patch) | |
tree | c917d935468560aa0ed20a737e4e86acba3b8c0a /.gitignore | |
parent | 34cda077348a5af1f9ec85b60803bb067ef33d38 (diff) | |
download | aspectj-3612f72740b56204ee0d3563171a2c0209c3694c.tar.gz aspectj-3612f72740b56204ee0d3563171a2c0209c3694c.zip |
Switch from 'libx' to 'lib', delete all obsolete binaries
Because 'cd lib && mvn compile' can now download and (un)zip many
previously SCM-committed third-party dependencies, the following 'lib'
subdirectories have been deleted:
- ant
- asm
- commons
- jarjar
- junit
- regexp
- saxon
This one is new (but not stored in SCM):
- jdtcore-aj
For each of them, there now is a .gitignore entry, so as to prevent
developers from accidentally committing the downloaded binaries again.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 72aa1c74c..0d4b7bbc9 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,16 @@ log.txt # No idea where these come from bin/ +# Downloaded libraries used during tests +/lib/ant/ +/lib/asm/ +/lib/commons/ +/lib/jarjar/ +/lib/jdtcore-aj/ +/lib/junit/ +/lib/regexp/ +/lib/saxon/ + # When using a RAM disk to speed up development, see how-to in docs/developer/ram-disk/settings-ramdisk.xml /.mvn/maven.config /.mvn/settings-ramdisk.xml |