We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f147bf3 commit 61c08ecCopy full SHA for 61c08ec
bin/to_maven.sh
@@ -0,0 +1,20 @@
1
+#!/bin/bash
2
+
3
+RELEASE=`head -1 project.clj | awk '{print $3}' | sed -e 's/\"//' | sed -e 's/\"//'`
4
5
+rm *jar
6
+rm *xml
7
+lein jar
8
+lein pom
9
+scp storm*jar pom.xml clojars@clojars.org:
10
11
12
+rm conf/log4j.properties
13
14
+mv pom.xml old-pom.xml
15
+sed 's/artifactId\>storm/artifactId\>storm-lib/g' old-pom.xml > pom.xml
16
+mv storm-$RELEASE.jar storm-lib-$RELEASE.jar
17
18
19
20
+git checkout conf/log4j.properties
0 commit comments