From: <fu...@us...> - 2010-11-14 18:24:57
|
Revision: 1165 http://cishell.svn.sourceforge.net/cishell/?rev=1165&view=rev Author: fugu13 Date: 2010-11-14 18:24:50 +0000 (Sun, 14 Nov 2010) Log Message: ----------- organize all the src folders Modified Paths: -------------- branches/tycho/core/org.cishell.reference.service.database/pom.xml branches/tycho/core/pom.xml Added Paths: ----------- branches/tycho/core/org.cishell.reference.prefs.admin/src/main/ branches/tycho/core/org.cishell.reference.prefs.admin/src/main/java/ branches/tycho/core/org.cishell.reference.prefs.admin/src/main/java/org/ branches/tycho/core/org.cishell.reference.service.database/src/main/ branches/tycho/core/org.cishell.reference.service.database/src/main/java/ branches/tycho/core/org.cishell.reference.service.database/src/main/java/org/ branches/tycho/core/org.cishell.reference.services/src/main/ branches/tycho/core/org.cishell.reference.services/src/main/java/ branches/tycho/core/org.cishell.reference.services/src/main/java/org/ branches/tycho/core/org.cishell.service.autostart/src/main/ branches/tycho/core/org.cishell.service.autostart/src/main/java/ branches/tycho/core/org.cishell.service.autostart/src/main/java/org/ branches/tycho/core/org.cishell.service.database/src/main/ branches/tycho/core/org.cishell.service.database/src/main/java/ branches/tycho/core/org.cishell.service.database/src/main/java/org/ branches/tycho/core/org.cishell.utilities/src/main/ branches/tycho/core/org.cishell.utilities/src/main/java/ branches/tycho/core/org.cishell.utilities/src/main/java/org/ branches/tycho/core/org.cishell.utility.datastructure/src/main/ branches/tycho/core/org.cishell.utility.datastructure/src/main/java/ branches/tycho/core/org.cishell.utility.datastructure/src/main/java/org/ branches/tycho/core/org.cishell.utility.swt/src/main/ branches/tycho/core/org.cishell.utility.swt/src/main/java/ branches/tycho/core/org.cishell.utility.swt/src/main/java/org/ Removed Paths: ------------- branches/tycho/core/org.cishell.reference.prefs.admin/src/org/ branches/tycho/core/org.cishell.reference.service.database/src/org/ branches/tycho/core/org.cishell.reference.services/src/org/ branches/tycho/core/org.cishell.service.autostart/src/org/ branches/tycho/core/org.cishell.service.database/src/org/ branches/tycho/core/org.cishell.utilities/src/org/ branches/tycho/core/org.cishell.utility.datastructure/src/org/ branches/tycho/core/org.cishell.utility.swt/src/org/ Modified: branches/tycho/core/org.cishell.reference.service.database/pom.xml =================================================================== --- branches/tycho/core/org.cishell.reference.service.database/pom.xml 2010-11-14 18:21:09 UTC (rev 1164) +++ branches/tycho/core/org.cishell.reference.service.database/pom.xml 2010-11-14 18:24:50 UTC (rev 1165) @@ -12,4 +12,12 @@ <artifactId>org.cishell.reference.service.database</artifactId> <packaging>eclipse-plugin</packaging> + <dependencies> + <dependency> + <groupId>org.apache.derby</groupId> + <artifactId>derby</artifactId> + <version>10.6.2.1</version> + </dependency> + </dependencies> + </project> Modified: branches/tycho/core/pom.xml =================================================================== --- branches/tycho/core/pom.xml 2010-11-14 18:21:09 UTC (rev 1164) +++ branches/tycho/core/pom.xml 2010-11-14 18:24:50 UTC (rev 1165) @@ -24,6 +24,9 @@ <module>org.cishell.algorithm.convertergraph</module> <module>org.cishell.utilities</module> <module>org.cishell.utility.datastructure</module> + <module>org.cishell.utility.swt</module> + <module>org.cishell.reference.services</module> + <module>org.cishell.reference.service.database</module> </modules> <dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fu...@us...> - 2010-11-14 18:38:46
|
Revision: 1166 http://cishell.svn.sourceforge.net/cishell/?rev=1166&view=rev Author: fugu13 Date: 2010-11-14 18:38:40 +0000 (Sun, 14 Nov 2010) Log Message: ----------- the build moves along; it should be pretty much complete now Modified Paths: -------------- branches/tycho/core/org.cishell.reference.service.database/META-INF/MANIFEST.MF branches/tycho/core/org.cishell.reference.service.database/pom.xml branches/tycho/core/org.cishell.utilities/pom.xml branches/tycho/core/pom.xml Modified: branches/tycho/core/org.cishell.reference.service.database/META-INF/MANIFEST.MF =================================================================== --- branches/tycho/core/org.cishell.reference.service.database/META-INF/MANIFEST.MF 2010-11-14 18:24:50 UTC (rev 1165) +++ branches/tycho/core/org.cishell.reference.service.database/META-INF/MANIFEST.MF 2010-11-14 18:38:40 UTC (rev 1166) @@ -13,7 +13,6 @@ org.cishell.service.database, org.cishell.utilities, org.cishell.utilities.database, - org.eclipse.core.internal.runtime, org.osgi.framework;version="1.4.0", org.osgi.service.cm;version="1.2.0", org.osgi.service.component;version="1.0.0", Modified: branches/tycho/core/org.cishell.reference.service.database/pom.xml =================================================================== --- branches/tycho/core/org.cishell.reference.service.database/pom.xml 2010-11-14 18:24:50 UTC (rev 1165) +++ branches/tycho/core/org.cishell.reference.service.database/pom.xml 2010-11-14 18:38:40 UTC (rev 1166) @@ -18,6 +18,11 @@ <artifactId>derby</artifactId> <version>10.6.2.1</version> </dependency> + <dependency> + <groupId>commons-dbcp</groupId> + <artifactId>commons-dbcp</artifactId> + <version>1.4</version> + </dependency> </dependencies> </project> Modified: branches/tycho/core/org.cishell.utilities/pom.xml =================================================================== --- branches/tycho/core/org.cishell.utilities/pom.xml 2010-11-14 18:24:50 UTC (rev 1165) +++ branches/tycho/core/org.cishell.utilities/pom.xml 2010-11-14 18:38:40 UTC (rev 1166) @@ -12,4 +12,5 @@ <artifactId>org.cishell.utilities</artifactId> <packaging>eclipse-plugin</packaging> + </project> Modified: branches/tycho/core/pom.xml =================================================================== --- branches/tycho/core/pom.xml 2010-11-14 18:24:50 UTC (rev 1165) +++ branches/tycho/core/pom.xml 2010-11-14 18:38:40 UTC (rev 1166) @@ -50,6 +50,7 @@ <artifactId>org.prefuse</artifactId> <version>beta-20071021-001-SNAPSHOT</version> </dependency> + </dependencies> <repositories> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fu...@us...> - 2010-11-16 02:23:36
|
Revision: 1167 http://cishell.svn.sourceforge.net/cishell/?rev=1167&view=rev Author: fugu13 Date: 2010-11-16 02:23:29 +0000 (Tue, 16 Nov 2010) Log Message: ----------- these should not have been bundled in our own jars anyways. They will be their own jars from now on, automatically packaged in Modified Paths: -------------- branches/tycho/core/org.cishell.reference/META-INF/MANIFEST.MF Removed Paths: ------------- branches/tycho/core/org.cishell.framework/lib/ Modified: branches/tycho/core/org.cishell.reference/META-INF/MANIFEST.MF =================================================================== --- branches/tycho/core/org.cishell.reference/META-INF/MANIFEST.MF 2010-11-14 18:38:40 UTC (rev 1166) +++ branches/tycho/core/org.cishell.reference/META-INF/MANIFEST.MF 2010-11-16 02:23:29 UTC (rev 1167) @@ -12,12 +12,16 @@ org.osgi.framework, org.osgi.service.log, org.osgi.service.metatype;version="1.1.0", - org.osgi.service.prefs + org.osgi.service.prefs, + edu.uci.ics.jung.algorithms.shortestpath, + edu.uci.ics.jung.graph, + edu.uci.ics.jung.graph.impl, + edu.uci.ics.jung.io, + edu.uci.ics.jung.utils Export-Package: org.cishell.reference.app.service.algorithminvocation, org.cishell.reference.app.service.datamanager, org.cishell.reference.app.service.scheduler, org.cishell.reference.service.conversion, org.cishell.reference.service.metatype Eclipse-LazyStart: true -Require-Bundle: jung Bundle-RequiredExecutionEnvironment: J2SE-1.5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |