Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
roelofkemp committed Aug 22, 2013
1 parent 05077da commit ece0eae
Show file tree
Hide file tree
Showing 11 changed files with 88 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.DS_Store
17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>cuckoo_plugin_feature</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.FeatureBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>
4 changes: 0 additions & 4 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin.includes = feature.xml
3 changes: 3 additions & 0 deletions dev.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Tue Jun 19 13:46:56 CEST 2012
CuckooPlugin=tmp-eclipse
@ignoredot@=true
Binary file added exported/artifacts.jar
Binary file not shown.
Binary file added exported/content.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
42 changes: 42 additions & 0 deletions feature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="CuckooPlugin.feature"
label="CuckooPlugin Feature"
version="0.0.3.qualifier"
license-feature="org.eclipse.pde">

<description>
The Cuckoo plugin extends the Android plugin to
further rewrite the result of the Android plugin
rewrite of AIDL files, for computation off-loading.
</description>

<copyright url="http://www.example.com/copyright">
Copyright (c) 2011 VU University, The Netherlands
</copyright>

<license url="https://raw.github.com/interdroid/cuckoo-plugin-feature/master/LICENSE">
BSD 3 clause
</license>

<url>
<update label="CuckooPlugin" url="https://raw.github.com/interdroid/cuckoo-plugin-feature/master/exported"/>
</url>

<requires>
<import plugin="com.android.ide.eclipse.adt"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.ui.ide"/>
<import plugin="org.eclipse.jdt.core"/>
</requires>

<plugin
id="CuckooPlugin"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

</feature>
24 changes: 24 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
** Cuckoo README **

Cuckoo is an open source computation offloading project of the Computer
Systems group of the Computer Science department of the Faculty of
Sciences at the VU University, Amsterdam, The Netherlands. The
main goal of the Cuckoo project is to simplify computation offloading
for Android apps.

Cuckoo is free software. See the file "LICENSE" for copying permissions.

The manual in the docs directory of the library project ("docs/manual.pdf") explains
how to build and run your Cuckoo application.

The current Cuckoo source repository tree is accessible through Github at
https://github.com/interdroid/cuckoo-library and https://github.com/interdroid/cuckoo-plugin
and https://github.com/interdroid/cuckoo-plugin-feature.

You can create a new version of the plugin by checking out the cuckoo-plugin code, making some changes,
then opening the feature.xml of this project in Eclipse (with the Feature Manifest Editor).

Select the export wizard and provide an output directory. Then copy the files from the output directory
to the exported directory of this project and commit and push to github. Click Help -> Check for Updates
in Eclipse to retrieve the new version in Eclipse.

0 comments on commit ece0eae

Please sign in to comment.