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 /aspectjtools | |
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 'aspectjtools')
-rw-r--r-- | aspectjtools/pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aspectjtools/pom.xml b/aspectjtools/pom.xml index 9073483a0..bf098e2cc 100644 --- a/aspectjtools/pom.xml +++ b/aspectjtools/pom.xml @@ -66,7 +66,7 @@ <target> <echo message="unzip patched jdtcore" /> <unzip - src="${project.basedir}/../libx/jdtcore-aj/jdtcore-for-aspectj.jar" + src="${project.basedir}/../lib/jdtcore-aj/jdtcore-for-aspectj.jar" dest="target/jdtcore-unzipped" /> </target> </configuration> @@ -82,7 +82,7 @@ <target> <echo message="unzip patched jdtcore sources" /> <unzip - src="${project.basedir}/../libx/jdtcore-aj/jdtcore-for-aspectj-src.zip" + src="${project.basedir}/../lib/jdtcore-aj/jdtcore-for-aspectj-src.zip" dest="target/jdtcore-unzipped-src" /> </target> </configuration> |