view dev/archetype-ext/src/main/resources/META-INF/maven/archetype-metadata.xml @ 1411:36ddd0f0cb87

Bump version and restore SNAPSHOT qualifier for further in-branch development.
author Jon VanAlten <jon.vanalten@redhat.com>
date Mon, 02 Jun 2014 13:43:44 -0600
parents 1cdee40fd026
children 2bdbf31ce2a6
line wrap: on
line source

<archetype-descriptor xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.5-SNAPSHOT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.5-SNAPSHOT http://maven.apache.org/xsd/archetype-descriptor-1.0.5-SNAPSHOT.xsd"
  name="Thermostat Extension Maven Archetype">
  <requiredProperties>
    <requiredProperty key="bundleSymbolicName">
      <defaultValue>${package}.exampleBundleSymbolicName-core</defaultValue>
    </requiredProperty>
    <requiredProperty key="moduleName">
      <defaultValue>The name of your Thermostat extension goes here</defaultValue>
    </requiredProperty>
    <requiredProperty key="thermostatVersion">
      <defaultValue>1.0.5-SNAPSHOT</defaultValue>
    </requiredProperty>
  </requiredProperties>

  <fileSets>
    <fileSet filtered="true" packaged="true" encoding="UTF-8" >
      <directory>src/main/java</directory>
      <includes>
	<include>internal/Activator.java</include>
	<include>ExampleCommand.java</include>
      </includes>
    </fileSet>
    <fileSet filtered="true" packaged="true" encoding="UTF-8" >
      <directory>src/test/java</directory>
      <includes>
	<include>internal/ActivatorTest.java</include>
	<include>ExampleCommandTest.java</include>
      </includes>
    </fileSet>
  </fileSets>
</archetype-descriptor>