forked from egonet/egonet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert to sbt project, except launch4j
- Loading branch information
Showing
234 changed files
with
9,626 additions
and
9,711 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,3 +161,9 @@ pip-log.txt | |
|
||
# Mac crap | ||
.DS_Store | ||
|
||
target | ||
.cache | ||
|
||
.classpath | ||
.project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project name="Enet" default="compile" basedir="."> | ||
|
||
<description> | ||
Egonet | ||
</description> | ||
|
||
<!-- Global Properties--> | ||
<property name="dir.lib.Enet" location="lib" /> | ||
<property name="dir.src.Egonet" location="src" /> | ||
<property name="dir.test.Egonet" location="test" /> | ||
<property name="dir.build.Egonet" location="build" /> | ||
<property name="dir.dist.Egonet" location="dist" /> | ||
|
||
<!--specifying the main classes to be executed --> | ||
<property name="main.class.Egonet" value="org.egonet.gui.EgonetRunner" /> | ||
|
||
<property name="launch4j.dir" location="lib/launch4j" /> | ||
|
||
<taskdef name="launch4j" | ||
classname="net.sf.launch4j.ant.Launch4jTask" | ||
classpath="${launch4j.dir}/launch4j.jar:${launch4j.dir}/lib/xstream.jar" /> | ||
|
||
<target name="compile" description="Create Windows-compatible executables from the built Jar files"> | ||
<launch4j configFile="winwrap.xml" /> | ||
</target> | ||
|
||
</project> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import AssemblyKeys._ | ||
import Keys._ | ||
import sbtassembly.Plugin._ | ||
|
||
assemblySettings | ||
|
||
name := "egonet" | ||
|
||
libraryDependencies += "net.sf.jung" % "jung-api" % "2.0.1" | ||
|
||
libraryDependencies += "net.sf.jung" % "jung-graph-impl" % "2.0.1" | ||
|
||
libraryDependencies += "net.sf.jung" % "jung-algorithms" % "2.0.1" | ||
|
||
libraryDependencies += "net.sf.jung" % "jung-io" % "2.0.1" | ||
|
||
libraryDependencies += "net.sf.jung" % "jung-visualization" % "2.0.1" | ||
|
||
libraryDependencies += "org.swinglabs" % "swingx" % "0.9.7" | ||
|
||
libraryDependencies += "org.jdesktop" % "swing-worker" % "1.1" | ||
|
||
libraryDependencies += "org.swinglabs" % "swing-layout" % "1.0.3" | ||
|
||
libraryDependencies += "com.miglayout" % "miglayout" % "3.7" | ||
|
||
libraryDependencies += "com.jgoodies" % "forms" % "1.1.0" | ||
|
||
libraryDependencies += "com.jgoodies" % "looks" % "2.1.4" | ||
|
||
libraryDependencies += "com.google.guava" % "guava" % "r08" | ||
|
||
libraryDependencies += "com.jcraft" % "jsch" % "0.1.41" | ||
|
||
libraryDependencies += "net.sf.opencsv" % "opencsv" % "1.8" | ||
|
||
libraryDependencies += "com.lowagie" % "itext" % "2.1.5" | ||
|
||
libraryDependencies += "com.lowagie" % "itext-rtf" % "2.1.5" | ||
|
||
libraryDependencies += "junit" % "junit" % "4.3.1" | ||
|
||
libraryDependencies += "commons-codec" % "commons-codec" % "1.3" | ||
|
||
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.5.6" | ||
|
||
libraryDependencies += "org.slf4j" % "slf4j-jdk14" % "1.5.6" | ||
|
||
mainClass in (Compile, run) := Some("org.egonet.gui.EgonetRunner") | ||
|
||
mainClass in assembly := Some("org.egonet.gui.EgonetRunner") | ||
|
||
mergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) => | ||
{ | ||
// case PathList("javax", "servlet", xs @ _*) => MergeStrategy.first | ||
// case PathList(ps @ _*) if ps.last endsWith ".html" => MergeStrategy.first | ||
// case "application.conf" => MergeStrategy.concat | ||
case "RELEASE-NOTES.txt" => MergeStrategy.discard | ||
case x => old(x) | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed
BIN
-17 KB
lib/fest-swing-1.0b1/extensions/fest-swing-junit-1.0b1/fest-swing-junit-1.0b1-sources.jar
Binary file not shown.
Binary file removed
BIN
-45.6 KB
lib/fest-swing-1.0b1/extensions/fest-swing-junit-1.0b1/lib/commons-codec-1.3.jar
Binary file not shown.
Binary file removed
BIN
-104 KB
lib/fest-swing-1.0b1/extensions/fest-swing-junit-1.0b1/lib/junit-4.3.1.jar
Binary file not shown.
Binary file removed
BIN
-3.55 KB
lib/fest-swing-1.0b1/extensions/fest-swing-testng-1.0b1/fest-swing-testng-1.0b1-sources.jar
Binary file not shown.
Binary file removed
BIN
-3.24 KB
lib/fest-swing-1.0b1/extensions/fest-swing-testng-1.0b1/fest-swing-testng-1.0b1.jar
Binary file not shown.
Binary file removed
BIN
-773 KB
lib/fest-swing-1.0b1/extensions/fest-swing-testng-1.0b1/lib/testng-5.5-jdk15.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.4.0") | ||
|
||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.11.2") |
File renamed without changes.
Oops, something went wrong.