Author: zoe
Date: Fri Oct 30 16:03:47 2009
New Revision: 831362
URL: http://svn.apache.org/viewvc?rev=831362&view=rev
Log:
ARIES-45 helloworld-api
Added:
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/pom.xml
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/helloworldapi/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/helloworldapi/HelloWorldService.java
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/META-INF/
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/META-INF/MANIFEST.MF
Modified:
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/
(props changed)
Propchange:
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Oct 30 16:03:47 2009
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project
Added:
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/pom.xml?rev=831362&view=auto
==============================================================================
---
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/pom.xml
(added)
+++
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/pom.xml
Fri Oct 30 16:03:47 2009
@@ -0,0 +1,47 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>blueprint-helloworld</artifactId>
+ <groupId>org.apache.aries.blueprint</groupId>
+ <version>1.0.0-incubating-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>blueprint-helloworld-api</artifactId>
+ <groupId>org.apache.aries.blueprint.blueprint-helloworld</groupId>
+ <name>Apache Aries Blueprint HelloWorld Api</name>
+ <packaging>bundle</packaging>
+ <description>Example blueprint hello world application - api</description>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin
+ </artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>
+ ${pom.groupId}.blueprint-helloworld-api</Bundle-SymbolicName>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added:
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/helloworldapi/HelloWorldService.java
URL:
http://svn.apache.org/viewvc/incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/helloworldapi/HelloWorldService.java?rev=831362&view=auto
==============================================================================
---
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/helloworldapi/HelloWorldService.java
(added)
+++
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/java/org/apache/aries/blueprint/helloworldapi/HelloWorldService.java
Fri Oct 30 16:03:47 2009
@@ -0,0 +1,26 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.aries.blueprint.helloworldapi;
+
+public interface HelloWorldService {
+ public void hello();
+
+ public void startUp();
+}
Added:
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/META-INF/MANIFEST.MF
URL:
http://svn.apache.org/viewvc/incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/META-INF/MANIFEST.MF?rev=831362&view=auto
==============================================================================
---
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/META-INF/MANIFEST.MF
(added)
+++
incubator/aries/trunk/blueprint/blueprint-helloworld/blueprint-helloworld-api/src/main/resources/META-INF/MANIFEST.MF
Fri Oct 30 16:03:47 2009
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Bundle-SymbolicName: org.apache.aries.blueprint.blueprint-helloworld.b
+ lueprint-helloworldapi
+Export-Package: org.apache.aries.blueprint.helloworldapi
+Bundle-Version: 1.0.0.incubating-SNAPSHOT
+Bundle-Description: Example blueprint hello world api.
+Bundle-ManifestVersion: 2