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

svn commit: r1725305 - in /aries/trunk/blueprint: blueprint-repository/ blueprint-repository/pom.xml pom.xml

Author: cschneider
Date: Mon Jan 18 16:46:12 2016
New Revision: 1725305

URL: http://svn.apache.org/viewvc?rev=1725305&view=rev
Log:
Add OBR repository

Added:
    aries/trunk/blueprint/blueprint-repository/
    aries/trunk/blueprint/blueprint-repository/pom.xml
Modified:
    aries/trunk/blueprint/pom.xml

Added: aries/trunk/blueprint/blueprint-repository/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-repository/pom.xml?rev=1725305&view=auto
==============================================================================
--- aries/trunk/blueprint/blueprint-repository/pom.xml (added)
+++ aries/trunk/blueprint/blueprint-repository/pom.xml Mon Jan 18 16:46:12 2016
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.aries</groupId>
+        <artifactId>parent</artifactId>
+        <version>2.0.1</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.aries.blueprint</groupId>
+    <artifactId>blueprint-repository</artifactId>
+    <name>Apache Aries Blueprint Repository</name>
+    <version>1.6.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <properties>
+        <bnd.version>3.1.0</bnd.version>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <local.index.policy>ALLOWED</local.index.policy>
+    </properties>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>biz.aQute.bnd</groupId>
+                <artifactId>bnd-indexer-maven-plugin</artifactId>
+                <version>${bnd.version}</version>
+                <configuration>
+                    <localURLs>${local.index.policy}</localURLs>
+                    <includeTransitive>true</includeTransitive>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>index</id>
+                        <goals>
+                            <goal>index</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint.api</artifactId>
+			<version>1.0.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint.core</artifactId>
+			<version>1.5.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint.compatibility</artifactId>
+			<version>1.0.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint.cm</artifactId>
+			<version>1.0.7</version>
+		</dependency>
+	</dependencies>
+</project>

Modified: aries/trunk/blueprint/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/blueprint/pom.xml?rev=1725305&r1=1725304&r2=1725305&view=diff
==============================================================================
--- aries/trunk/blueprint/pom.xml (original)
+++ aries/trunk/blueprint/pom.xml Mon Jan 18 16:46:12 2016
@@ -50,6 +50,7 @@
         <module>blueprint-web</module>
         <module>blueprint-web-osgi</module>
         <module>blueprint-jexl-evaluator</module>
+        <module>blueprint-repository</module>
         <module>blueprint-sample</module>
         <module>blueprint-annotation-api</module>
         <module>blueprint-annotation-impl</module>