<!DOCTYPE idea-plugin PUBLIC "Plugin/DTD" "http://plugins.intellij.net/plugin.dtd">
<idea-plugin url="http://cope.eecs.oregonstate.edu/">
  <name>COPE-Recorder</name>

  <description><![CDATA[
      This is a plugin to track the changes that developers make in order to understand how to developers
      make changes to source code during the TDD cycle.
   ]]></description>
  <id>COPE-Recorder</id>

  <version>0.4</version>
  <vendor email="cope@eecs.oregonstate.edu" url="http://cope.eecs.oregonstate.edu">Oregon State University</vendor>
    <idea-version since-build="8000"/>


  <change-notes><![CDATA[
      Add change notes here.<br>
      <em>most HTML tags may be used</em>
    ]]>
  </change-notes>

  <!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
  <idea-version since-build="131"/>

  <!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
       on how to target different products -->
  <!-- uncomment to enable plugin in all products
  <depends>com.intellij.modules.lang</depends>
  -->

  <application-components>
    <!-- Add your application components here -->
  </application-components>

  <project-components>
    <!-- Add your project components here -->
    <component>
        <implementation-class>edu.oregonstate.cope.intellij.recorder.COPEComponent</implementation-class>
    </component>
  </project-components>

  <actions>
    <!-- Add your actions here -->
  </actions>


    <extensions defaultExtensionNs="com.intellij">
        <!-- Add your extensions here
         <applicationConfigurable instance="ConfigurationDialog"></applicationConfigurable>
        -->
        <applicationConfigurable implementation="edu.oregonstate.cope.intellij.recorder.CopeConfig"></applicationConfigurable>

    </extensions>

</idea-plugin>