1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-25 16:07:12 -07:00

First commit

This commit is contained in:
Cedric Beust 2015-10-03 21:38:15 -07:00
commit c061e7df85
102 changed files with 6717 additions and 0 deletions

17
build-apt-plugin Normal file
View file

@ -0,0 +1,17 @@
jar=$HOME/t/kobalt-apt-0.3.jar
rm -f $jar
cd $HOME/kotlin/kobalt
jar cf $jar -C build/classes/main com/beust/kobalt/plugin/apt
jar uf $jar -C src/main/resources .
rm -rf /tmp/META-INF
mkdir -p /tmp/META-INF
echo > /tmp/META-INF/MANIFEST.MF Manifest-Version: 1.0
echo >>/tmp/META-INF/MANIFEST.MF "Created-By: 1.8.0_25 (Oracle Corporation)"
echo >>/tmp/META-INF/MANIFEST.MF Kobalt-Plugin-Class: com.beust.kobalt.plugin.apt.AptPlugin
(cd /tmp && jar uf $jar META-INF)