Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2015-11-12 17:11:37 +0000
committerEike Stepper2015-11-12 17:12:01 +0000
commit673f7c98638f6a5c8b7cfd32c4fbd8f564b9434f (patch)
treea1d2afb59eeacbd53322c5480151c67c2f78f8b6 /org.eclipse.userstorage.ui
parent502d84766bf71ad0311095e0bbcabc54bcc11191 (diff)
downloaduss-673f7c98638f6a5c8b7cfd32c4fbd8f564b9434f.tar.gz
uss-673f7c98638f6a5c8b7cfd32c4fbd8f564b9434f.tar.xz
uss-673f7c98638f6a5c8b7cfd32c4fbd8f564b9434f.zip
Add releng
Diffstat (limited to 'org.eclipse.userstorage.ui')
-rw-r--r--org.eclipse.userstorage.ui/.project11
-rw-r--r--org.eclipse.userstorage.ui/META-INF/MANIFEST.MF3
-rw-r--r--org.eclipse.userstorage.ui/build.properties6
-rw-r--r--org.eclipse.userstorage.ui/plugin.properties11
-rw-r--r--org.eclipse.userstorage.ui/pom.xml25
5 files changed, 53 insertions, 3 deletions
diff --git a/org.eclipse.userstorage.ui/.project b/org.eclipse.userstorage.ui/.project
index e570a1d..9252c02 100644
--- a/org.eclipse.userstorage.ui/.project
+++ b/org.eclipse.userstorage.ui/.project
@@ -25,4 +25,15 @@
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
+ <filteredResources>
+ <filter>
+ <id>1396938000000</id>
+ <name></name>
+ <type>10</type>
+ <matcher>
+ <id>org.eclipse.ui.ide.multiFilter</id>
+ <arguments>1.0-projectRelativePath-matches-true-false-target</arguments>
+ </matcher>
+ </filter>
+ </filteredResources>
</projectDescription>
diff --git a/org.eclipse.userstorage.ui/META-INF/MANIFEST.MF b/org.eclipse.userstorage.ui/META-INF/MANIFEST.MF
index 59d870c..3b1f24b 100644
--- a/org.eclipse.userstorage.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.userstorage.ui/META-INF/MANIFEST.MF
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: Eclipse User Storage UI
+Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.userstorage.ui;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.userstorage.ui.internal.Activator
@@ -12,3 +12,4 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.0.0,4.0.0)",
org.apache.httpcomponents.httpcore;bundle-version="[4.0.0,5.0.0)",
org.eclipse.userstorage;bundle-version="[1.0.0,2.0.0)"
Export-Package: org.eclipse.userstorage.ui.internal;version="1.0.0";x-internal:=true
+Bundle-Vendor: %providerName
diff --git a/org.eclipse.userstorage.ui/build.properties b/org.eclipse.userstorage.ui/build.properties
index c3440a5..9df49d1 100644
--- a/org.eclipse.userstorage.ui/build.properties
+++ b/org.eclipse.userstorage.ui/build.properties
@@ -4,5 +4,7 @@ bin.includes = META-INF/,\
.,\
icons/,\
about.html,\
- plugin.xml
-src.includes = about.html
+ plugin.xml,\
+ plugin.properties
+src.includes = about.html,\
+ pom.xml
diff --git a/org.eclipse.userstorage.ui/plugin.properties b/org.eclipse.userstorage.ui/plugin.properties
new file mode 100644
index 0000000..cc3658c
--- /dev/null
+++ b/org.eclipse.userstorage.ui/plugin.properties
@@ -0,0 +1,11 @@
+# Copyright (c) 2015 Eike Stepper (Berlin, Germany) and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Eike Stepper - initial API and implementation
+
+pluginName = Eclipse User Storage UI
+providerName = Eclipse.org
diff --git a/org.eclipse.userstorage.ui/pom.xml b/org.eclipse.userstorage.ui/pom.xml
new file mode 100644
index 0000000..afddc54
--- /dev/null
+++ b/org.eclipse.userstorage.ui/pom.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2015 Eike Stepper (Berlin, Germany) and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ Eike Stepper - initial API and implementation
+-->
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.userstorage</groupId>
+ <artifactId>parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
+ <groupId>org.eclipse.userstorage</groupId>
+ <artifactId>org.eclipse.userstorage.ui</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>

Back to the top