Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
META-INF/wicket-components.xml:

<components>

  <component class="com.mycomponents.Slider"
             version="0.9.0" 
             search-keywords="slider,ui,java">

    <description>
      This text describes the component.
    </description>

    <publisher name="my components" 
               site="http://mycomponents.com/slider" 
               email="support@mycomponents.com"/>

    <legal>
      <copyright>
          Copyright 2009-2010, John Q. Public. All Rights Reserved.
      </copyright>
      <license name="Apache 2.0">
          Full license text goes here so it travels with the JAR.
      </license>
    </legal>

    <requirements>
      <library name="wicket" version="1.3"/>
      <library name="YUI" version="4.0"/>
    </requirements>

    <resources>
      <source-code url="component1slider-sources.jar"/>
      <screenshots url="component1/slider-screenshots"/>
      <demo class="com.mycomponents.demo.DemoPanel"/>
    </resources>

  </component>

  <component name="component2">

        ...

  </component>

</components>

META-INF/component1/slider-screenshots/1.jpg
META-INF/component1/slider-screenshots/2.jpg

...

OSGi:
Some of the properties above would be better represented by OSGi (if you still want to use that)

...