From: <to...@us...> - 2007-01-31 19:21:54
|
Revision: 31 http://techne-dev.svn.sourceforge.net/techne-dev/?rev=31&view=rev Author: tonit Date: 2007-01-31 11:21:51 -0800 (Wed, 31 Jan 2007) Log Message: ----------- made "technelaunch" default cache profile for frameworks (so questions on it) Modified Paths: -------------- sandbox/tonit/techne-env/bin/techne.jar sandbox/tonit/techne-env/conf/config.properties sandbox/tonit/techne-env/development/doc/wiki.txt Modified: sandbox/tonit/techne-env/bin/techne.jar =================================================================== (Binary files differ) Modified: sandbox/tonit/techne-env/conf/config.properties =================================================================== --- sandbox/tonit/techne-env/conf/config.properties 2007-01-31 18:58:34 UTC (rev 30) +++ sandbox/tonit/techne-env/conf/config.properties 2007-01-31 19:21:51 UTC (rev 31) @@ -1,23 +1,6 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# -# Framework config properties. -# +# this is to be merged across osgi framwworks +# FELIX specific section: +felix.cache.profile=technelaunch org.osgi.framework.system.packages=org.osgi.framework; version=1.3.0, \ org.osgi.service.packageadmin; version=1.2.0, \ org.osgi.service.startlevel; version=1.0.0, \ @@ -25,7 +8,7 @@ ${jre-${java.specification.version}} #org.osgi.framework.bootdelegation=sun.*,com.sun.* -#felix.cache.profile=foo + felix.auto.start.1= \ file:bundle/org.apache.felix.shell-0.9.0-incubator-SNAPSHOT.jar \ file:bundle/org.apache.felix.shell.tui-0.9.0-incubator-SNAPSHOT.jar \ Modified: sandbox/tonit/techne-env/development/doc/wiki.txt =================================================================== --- sandbox/tonit/techne-env/development/doc/wiki.txt 2007-01-31 18:58:34 UTC (rev 30) +++ sandbox/tonit/techne-env/development/doc/wiki.txt 2007-01-31 19:21:51 UTC (rev 31) @@ -1,3 +1,6 @@ +!!2007-01-31,tonit +more work on techne.launch to come (read workbook at techne wiki). + !!2007-01-29, tonit, first code drop into sandbox/tonit Have a plain techne.runtime derived from felix components. * tonit.audio is currently a standard SCR component, but will be converted to FAR as test-app. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <to...@us...> - 2007-02-12 23:23:48
|
Revision: 47 http://techne-dev.svn.sourceforge.net/techne-dev/?rev=47&view=rev Author: tonit Date: 2007-02-12 15:23:49 -0800 (Mon, 12 Feb 2007) Log Message: ----------- Modified Paths: -------------- sandbox/tonit/techne-env/conf/config.properties sandbox/tonit/techne-env/development/build/build.xml sandbox/tonit/techne-env/lib/org.apache.felix.framework-0.9.0-incubator-SNAPSHOT.jar Added Paths: ----------- sandbox/tonit/techne-env/lib/org.eclipse.osgi_3.2.1.R32x_v20060919.jar Property Changed: ---------------- sandbox/tonit/techne-env/lib/ Modified: sandbox/tonit/techne-env/conf/config.properties =================================================================== --- sandbox/tonit/techne-env/conf/config.properties 2007-02-12 23:11:50 UTC (rev 46) +++ sandbox/tonit/techne-env/conf/config.properties 2007-02-12 23:23:49 UTC (rev 47) @@ -1,6 +1,5 @@ # this is to be merged across osgi framwworks # FELIX specific section: -felix.cache.profile=technelaunch org.osgi.framework.system.packages=org.osgi.framework; version=1.3.0, \ org.osgi.service.packageadmin; version=1.2.0, \ org.osgi.service.startlevel; version=1.0.0, \ @@ -15,7 +14,6 @@ file:bundle/org.apache.felix.bundlerepository-0.9.0-incubator-SNAPSHOT.jar \ file:bundle/org.osgi.compendium-0.9.0-incubator-SNAPSHOT.jar \ file:bundle/org.apache.felix.http.jetty-0.8.0-SNAPSHOT.jar \ - file:bundle/org.apache.felix.scr-0.9.0-incubator-SNAPSHOT.jar \ file:bundle/org.apache.felix.log-0.9.0-incubator-SNAPSHOT.jar \ file:bundle/aQute.fileinstall-1.0.jar felix.log.level=1 Modified: sandbox/tonit/techne-env/development/build/build.xml =================================================================== --- sandbox/tonit/techne-env/development/build/build.xml 2007-02-12 23:11:50 UTC (rev 46) +++ sandbox/tonit/techne-env/development/build/build.xml 2007-02-12 23:23:49 UTC (rev 47) @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!--base for techne build assembly --> <project name="techne.development" default="bundle" basedir="../../../"> + <property name="dir.felixtrunk" value="/Users/tmenzel/devel/felix/felix/trunk" /> <target name="bundle"> <jar destfile="techne-env/load/${component}.jar" manifest="${component}/resources/META-INF/MANIFEST.MF"> <fileset dir="${component}/bin"> @@ -40,5 +41,12 @@ <target name="uninstall"> <delete file="../techne-env/load/techne.audio.jar"></delete> </target> - + + <target name="synclibs"> + <copy todir="../techne-env/lib" > + <fileset dir="${dir.felixtrunk}/framework/target/"> + <include name="*.jar"/> + </fileset> + </copy> + </target> </project> \ No newline at end of file Property changes on: sandbox/tonit/techne-env/lib ___________________________________________________________________ Name: svn:ignore + tmp Modified: sandbox/tonit/techne-env/lib/org.apache.felix.framework-0.9.0-incubator-SNAPSHOT.jar =================================================================== (Binary files differ) Added: sandbox/tonit/techne-env/lib/org.eclipse.osgi_3.2.1.R32x_v20060919.jar =================================================================== (Binary files differ) Property changes on: sandbox/tonit/techne-env/lib/org.eclipse.osgi_3.2.1.R32x_v20060919.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <to...@us...> - 2007-02-12 23:26:13
|
Revision: 48 http://techne-dev.svn.sourceforge.net/techne-dev/?rev=48&view=rev Author: tonit Date: 2007-02-12 15:26:14 -0800 (Mon, 12 Feb 2007) Log Message: ----------- Modified Paths: -------------- sandbox/tonit/techne-env/bin/techne.jar Added Paths: ----------- sandbox/tonit/techne-env/lib/bnd-0.0.110.jar Property Changed: ---------------- sandbox/tonit/techne-env/ Property changes on: sandbox/tonit/techne-env ___________________________________________________________________ Name: svn:ignore + tmp Modified: sandbox/tonit/techne-env/bin/techne.jar =================================================================== (Binary files differ) Added: sandbox/tonit/techne-env/lib/bnd-0.0.110.jar =================================================================== (Binary files differ) Property changes on: sandbox/tonit/techne-env/lib/bnd-0.0.110.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |