view dev/archetype-ext/src/main/resources/META-INF/maven/archetype-metadata.xml @ 1377:31528d30c099

Bump version and restore SNAPSHOT qualifier for further in-branch development.
author Jon VanAlten <jon.vanalten@redhat.com>
date Tue, 26 Nov 2013 01:21:08 -0700
parents 504438de7243
children ea1009d9c02a
line wrap: on
line source

<archetype-descriptor xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.1-SNAPSHOT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.1-SNAPSHOT http://maven.apache.org/xsd/archetype-descriptor-1.0.1-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.1-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>