Allow other namespaces then ESH in archetype

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2014-07-14 14:40:03 +02:00
Родитель 9ce2aff032
Коммит fef7f6f43e
3 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -8,6 +8,9 @@
<requiredProperty key="vendorName">
<defaultValue>Eclipse.org/SmartHome</defaultValue>
</requiredProperty>
<requiredProperty key="namespace">
<defaultValue>org.eclipse.smarthome</defaultValue>
</requiredProperty>
<requiredProperty key="author">
</requiredProperty>
<requiredProperty key="bindingId">

Просмотреть файл

@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclipse SmartHome ${bindingIdCamelCase} Binding
Bundle-Name: ${bindingIdCamelCase} Binding
Bundle-SymbolicName: ${artifactId};singleton:=true
Bundle-Vendor: ${vendorName}
Bundle-Version: ${version.replaceAll("-SNAPSHOT", ".qualifier")}

Просмотреть файл

@ -4,9 +4,9 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.smarthome</groupId>
<groupId>${namespace}</groupId>
<artifactId>binding</artifactId>
<version>${project.version}</version>
<version>@${version}</version>
</parent>
<properties>
@ -18,7 +18,7 @@
<artifactId>${rootArtifactId}</artifactId>
<version>@${version}</version>
<name>Eclipse SmartHome ${bindingIdCamelCase} Binding</name>
<name>${bindingIdCamelCase} Binding</name>
<packaging>eclipse-plugin</packaging>
</project>