From 1d20c0e403f1a38d4aca830e0eb4db03ba43efd3 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 19 Sep 2017 22:21:29 +0200 Subject: [PATCH] Add sisu-maven-plugin replacement --- sisu.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 sisu.sh diff --git a/sisu.sh b/sisu.sh new file mode 100755 index 0000000..979f373 --- /dev/null +++ b/sisu.sh @@ -0,0 +1,12 @@ +## This script generates a rough javax.inject.Named file. It is meant to +## replace sisu-maven-plugin as it eventually has a recursive dependency +## on maven. +## +## This script must be run in the source directory (usually src/main/java). + +for file in `(cd $1; find -name '*.java')`; do + annot=`grep "^@Named" $1/$file` + if [ "$annot" != "" ]; then + echo $file | sed -e 's|^\./||' -e 's|\.java||' -e 's|/|.|g' + fi +done > $2 -- 2.14.1 ass='sub'>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/m4/guix.m4
AgeCommit message (Expand)Author
2017-02-20gnu: Add bootstrap-binaries for 'aarch64-linux'....Efraim Flashner
2016-11-25offload: Use Guile-SSH instead of GNU lsh....Ludovic Courtès
2016-08-10build: Correctly determine the system type for GNU/Hurd systems....Manolis Ragkousis
2016-07-20Merge branch 'master' into core-updatesLudovic Courtès
2016-07-19Add (guix zlib)....Ludovic Courtès
2016-06-23build: Remove unneeded conditionals for (guix build syscalls)....Manolis Ragkousis
2016-03-19build: Protect against misconfiguration of localstatedir....Ludovic Courtès
2016-01-13build: Use 127 as the Linux hash-bang limit....Ludovic Courtès
2016-01-12build: 'make check' errors out if file name limits would be hit....Ludovic Courtès
2016-01-12build: Warn against long hash bang lines for tests....Ludovic Courtès
2015-12-01build: Fix detection of ARM systems....Ludovic Courtès
2015-11-25build: Reject ARMv6 systems....Ludovic Courtès
2015-10-09build: Fix libgcrypt detection on FHS systems....Ludovic Courtès
2015-10-06build: Automatically determine libgcrypt's file name....Ludovic Courtès
2015-08-27build: Do not build (guix build syscalls) if 'mount' is missing from libc....Ludovic Courtès
2015-05-19build: Make sure $CXX supports C++11....Ludovic Courtès
2015-02-24build: Reject or warn against file name length limit overruns....Ludovic Courtès
2015-01-07gnu: Add bootstrap binaries for 'armhf-linux'....Mark H Weaver