Skip to content

Commit

Permalink
Changing where we put solder
Browse files Browse the repository at this point in the history
It now is put into a temp folder
  • Loading branch information
LightGuard committed Aug 11, 2011
1 parent 14fdbb6 commit b85bb73
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -42,10 +42,17 @@
* @author <a href="http://community.jboss.org/people/LightGuard">Jason Porter</a>
*/
public final class BaseWebArchive {
private static String SOLDER_PATH;
static {
try {
SOLDER_PATH = File.createTempFile("solder", ".jar").getParent();
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
private static volatile JavaArchive solderJar = null;
private static final String SOLDER_VERSION = "3.0.0.Final";
private static final String SOLDER_NAME = "seam-solder-" + SOLDER_VERSION + ".jar";
private static final String SOLDER_PATH = "target" + File.separator;
private static final String JBOSS_REPO = "http://repository.jboss.org/nexus/content/groups/public/org/jboss/seam/solder/seam-solder/";
private static final String SOLDER_URL_STRING = JBOSS_REPO + SOLDER_VERSION + "/" + SOLDER_NAME;

Expand Down

0 comments on commit b85bb73

Please sign in to comment.