view dev/archetype-ext/src/main/resources/META-INF/maven/archetype-metadata.xml @ 1420:7e43a50de136 default tip

Bump version and restore SNAPSHOT qualifier for further in-branch development.
author Jon VanAlten <jon.vanalten@redhat.com>
date Tue, 16 Dec 2014 13:04:12 -0700
parents 2bdbf31ce2a6
children
line wrap: on
line source

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