You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2015/06/25 18:08:29 UTC

svn commit: r1687569 - in /felix/trunk/http: bundle/pom.xml proxy/src/main/java/org/apache/felix/http/proxy/package-info.java samples/bridge/pom.xml

Author: cziegeler
Date: Thu Jun 25 16:08:29 2015
New Revision: 1687569

URL: http://svn.apache.org/r1687569
Log:
FELIX-4939 : Add support for http session id listener

Added:
    felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java   (with props)
Modified:
    felix/trunk/http/bundle/pom.xml
    felix/trunk/http/samples/bridge/pom.xml

Modified: felix/trunk/http/bundle/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/http/bundle/pom.xml?rev=1687569&r1=1687568&r2=1687569&view=diff
==============================================================================
--- felix/trunk/http/bundle/pom.xml (original)
+++ felix/trunk/http/bundle/pom.xml Thu Jun 25 16:08:29 2015
@@ -111,22 +111,22 @@
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.bridge</artifactId>
-            <version>2.3.2</version>
+            <version>3.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.cometd</artifactId>
             <version>2.3.2</version>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.jetty</artifactId>
             <version>3.0.3-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.whiteboard</artifactId>
             <version>2.3.3-SNAPSHOT</version>
         </dependency>

Added: felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java?rev=1687569&view=auto
==============================================================================
--- felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java (added)
+++ felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java Thu Jun 25 16:08:29 2015
@@ -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.
+ */
+
+@Version("3.0.0")
+package org.apache.felix.http.proxy;
+
+import aQute.bnd.annotation.Version;
+

Propchange: felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: felix/trunk/http/proxy/src/main/java/org/apache/felix/http/proxy/package-info.java
------------------------------------------------------------------------------
    svn:keywords = author date id revision rev url

Modified: felix/trunk/http/samples/bridge/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/http/samples/bridge/pom.xml?rev=1687569&r1=1687568&r2=1687569&view=diff
==============================================================================
--- felix/trunk/http/samples/bridge/pom.xml (original)
+++ felix/trunk/http/samples/bridge/pom.xml Thu Jun 25 16:08:29 2015
@@ -122,24 +122,24 @@
             <version>4.2.1</version>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.proxy</artifactId>
-            <version>2.3.3-SNAPSHOT</version>
+            <version>3.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.bridge</artifactId>
-            <version>[2.4.0-SNAPSHOT,2.5)</version>
+            <version>3.0.0-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.http.samples.filter</artifactId>
             <version>[2.3,2.4)</version>            
             <scope>provided</scope>
         </dependency>
         <dependency>
-            <groupId>${project.groupId}</groupId>
+            <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.webconsole</artifactId>
             <version>4.2.0</version>
             <scope>provided</scope>