You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by mn...@apache.org on 2010/01/18 17:27:39 UTC

svn commit: r900447 - in /incubator/aries/trunk/application/application-itest-interface: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/aries/ src/main/java/org/apache/aries/sample/

Author: mnuttall
Date: Mon Jan 18 16:27:39 2010
New Revision: 900447

URL: http://svn.apache.org/viewvc?rev=900447&view=rev
Log:
Aries-89: Flesh out application itests: interface bundle

Added:
    incubator/aries/trunk/application/application-itest-interface/pom.xml
    incubator/aries/trunk/application/application-itest-interface/src/
    incubator/aries/trunk/application/application-itest-interface/src/main/
    incubator/aries/trunk/application/application-itest-interface/src/main/java/
    incubator/aries/trunk/application/application-itest-interface/src/main/java/org/
    incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/
    incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/
    incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/sample/
    incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/sample/HelloWorld.java
Modified:
    incubator/aries/trunk/application/application-itest-interface/   (props changed)

Propchange: incubator/aries/trunk/application/application-itest-interface/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jan 18 16:27:39 2010
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project

Added: incubator/aries/trunk/application/application-itest-interface/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/application/application-itest-interface/pom.xml?rev=900447&view=auto
==============================================================================
--- incubator/aries/trunk/application/application-itest-interface/pom.xml (added)
+++ incubator/aries/trunk/application/application-itest-interface/pom.xml Mon Jan 18 16:27:39 2010
@@ -0,0 +1,55 @@
+<!--
+ 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>
+        <groupId>org.apache.aries.application</groupId>
+        <artifactId>application</artifactId>
+        <version>1.0.0-incubating-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>org.apache.aries.application.runtime.itest.interfaces</artifactId>
+    <packaging>bundle</packaging>
+    <name>application-runtime itest sample application interface</name>
+    <description>
+      Interface class(es) for aplication runtime itests.
+    </description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <Export-Package>
+                            org.apache.aries.sample;version="${pom.version}"                        
+                            </Export-Package>
+                        <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
+                        <_removeheaders>Ignore-Package,Include-Resource,Private-Package,Bundle-DocURL</_removeheaders>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/sample/HelloWorld.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/sample/HelloWorld.java?rev=900447&view=auto
==============================================================================
--- incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/sample/HelloWorld.java (added)
+++ incubator/aries/trunk/application/application-itest-interface/src/main/java/org/apache/aries/sample/HelloWorld.java Mon Jan 18 16:27:39 2010
@@ -0,0 +1,24 @@
+/*
+ * 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.sample;
+
+public interface HelloWorld {
+
+  public String getMessage();
+}