Skip to content

Instantly share code, notes, and snippets.

@aeurielesn
Created October 7, 2010 13:51
Show Gist options
  • Save aeurielesn/615130 to your computer and use it in GitHub Desktop.
Save aeurielesn/615130 to your computer and use it in GitHub Desktop.
[eclipse] mixed pydev and jdt project
(in pydev/.project:)
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>pydev</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.python.pydev.PyDevBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.python.pydev.pythonNature</nature>
</natures>
</projectDescription>
(in jdt/.project:)
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>jdt</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
(in mixed/.project:)
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>mixed</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.python.pydev.PyDevBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.python.pydev.pythonNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
(copy from pydev/.pydevproject to mixed/.pydevproject:)
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?>
<pydev_project>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.5</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/mixed/src</path>
</pydev_pathproperty>
</pydev_project>
(copy from jdt/.classpath to mixed/.classpath:)
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment