You are viewing a plain text version of this content. The canonical link for it is here.
Posted to graffito-commits@incubator.apache.org by ta...@apache.org on 2005/06/13 23:07:28 UTC

svn commit: r190526 - in /incubator/graffito/trunk/applications: browser/locator.ent browser/locator.path browser/project.xml framework-portlets/locator.ent framework-portlets/locator.path framework-portlets/project.xml graffito-portlets/locator.ent graffito-portlets/locator.path graffito-portlets/project.xml

Author: taylor
Date: Mon Jun 13 16:07:27 2005
New Revision: 190526

URL: http://svn.apache.org/viewcvs?rev=190526&view=rev
Log:
use locator entities to find jetspeed and bridges versions of dependencies
note: all other dependencies should be handled in a similar manner where possible

Added:
    incubator/graffito/trunk/applications/browser/locator.ent
    incubator/graffito/trunk/applications/browser/locator.path
    incubator/graffito/trunk/applications/framework-portlets/locator.ent
    incubator/graffito/trunk/applications/framework-portlets/locator.path
    incubator/graffito/trunk/applications/graffito-portlets/locator.ent
    incubator/graffito/trunk/applications/graffito-portlets/locator.path
Modified:
    incubator/graffito/trunk/applications/browser/project.xml
    incubator/graffito/trunk/applications/framework-portlets/project.xml
    incubator/graffito/trunk/applications/graffito-portlets/project.xml

Added: incubator/graffito/trunk/applications/browser/locator.ent
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/browser/locator.ent?rev=190526&view=auto
==============================================================================
--- incubator/graffito/trunk/applications/browser/locator.ent (added)
+++ incubator/graffito/trunk/applications/browser/locator.ent Mon Jun 13 16:07:27 2005
@@ -0,0 +1,2 @@
+<!-- derive locator.ent from parent -->
+<!ENTITY % locator-ent SYSTEM "file:../../locator.ent"> %locator-ent;

Added: incubator/graffito/trunk/applications/browser/locator.path
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/browser/locator.path?rev=190526&view=auto
==============================================================================
--- incubator/graffito/trunk/applications/browser/locator.path (added)
+++ incubator/graffito/trunk/applications/browser/locator.path Mon Jun 13 16:07:27 2005
@@ -0,0 +1 @@
+../../
\ No newline at end of file

Modified: incubator/graffito/trunk/applications/browser/project.xml
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/browser/project.xml?rev=190526&r1=190525&r2=190526&view=diff
==============================================================================
--- incubator/graffito/trunk/applications/browser/project.xml (original)
+++ incubator/graffito/trunk/applications/browser/project.xml Mon Jun 13 16:07:27 2005
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE project [
+  <!ENTITY % locator-entities SYSTEM "file:locator.ent"> %locator-entities;
+]>
+<!--
+Copyright 2004 The Apache Software Foundation
+
+Licensed 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.
+
+  $Id: project.xml 189937 2005-06-10 10:51:53Z ate $
+-->
 <project>
   <extend>${basedir}/./../../project.xml</extend>
   <pomVersion>3</pomVersion>
@@ -133,7 +153,7 @@
     <dependency>
       <groupId>jetspeed2</groupId>
       <artifactId>jetspeed-api</artifactId>
-      <version>2.0-M3-dev</version>
+      <version>&jetspeed-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>false</war.bundle>
@@ -142,7 +162,7 @@
     <dependency>
       <groupId>jetspeed2</groupId>
       <artifactId>jetspeed-commons</artifactId>
-      <version>2.0-M3-dev</version>
+      <version>&jetspeed-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>false</war.bundle>
@@ -151,7 +171,7 @@
     <dependency>
       <groupId>jetspeed2</groupId>
       <artifactId>jetspeed-components</artifactId>
-      <version>2.0-M3-dev</version>
+      <version>&jetspeed-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>true</war.bundle>
@@ -160,7 +180,7 @@
     <dependency>
       <groupId>portals-bridges</groupId>
       <artifactId>portals-bridges-common</artifactId>
-      <version>0.1</version>
+      <version>&portals-bridges-common-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>true</war.bundle>
@@ -169,7 +189,7 @@
     <dependency>
       <groupId>portals-bridges</groupId>
       <artifactId>portals-bridges-velocity</artifactId>
-      <version>0.1</version>
+      <version>&portals-bridges-velocity-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>true</war.bundle>

Added: incubator/graffito/trunk/applications/framework-portlets/locator.ent
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/framework-portlets/locator.ent?rev=190526&view=auto
==============================================================================
--- incubator/graffito/trunk/applications/framework-portlets/locator.ent (added)
+++ incubator/graffito/trunk/applications/framework-portlets/locator.ent Mon Jun 13 16:07:27 2005
@@ -0,0 +1,2 @@
+<!-- derive locator.ent from parent -->
+<!ENTITY % locator-ent SYSTEM "file:../../locator.ent"> %locator-ent;

Added: incubator/graffito/trunk/applications/framework-portlets/locator.path
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/framework-portlets/locator.path?rev=190526&view=auto
==============================================================================
--- incubator/graffito/trunk/applications/framework-portlets/locator.path (added)
+++ incubator/graffito/trunk/applications/framework-portlets/locator.path Mon Jun 13 16:07:27 2005
@@ -0,0 +1 @@
+../../
\ No newline at end of file

Modified: incubator/graffito/trunk/applications/framework-portlets/project.xml
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/framework-portlets/project.xml?rev=190526&r1=190525&r2=190526&view=diff
==============================================================================
--- incubator/graffito/trunk/applications/framework-portlets/project.xml (original)
+++ incubator/graffito/trunk/applications/framework-portlets/project.xml Mon Jun 13 16:07:27 2005
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE project [
+  <!ENTITY % locator-entities SYSTEM "file:locator.ent"> %locator-entities;
+]>
+<!--
+Copyright 2004 The Apache Software Foundation
+
+Licensed 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.
+
+  $Id: project.xml 189937 2005-06-10 10:51:53Z ate $
+-->
 <project>
   <extend>${basedir}/./../../project.xml</extend>
   <pomVersion>3</pomVersion>
@@ -32,7 +52,7 @@
 		<dependency>
 			<groupId>jetspeed2</groupId>
 			<artifactId>jetspeed-api</artifactId>
-			<version>2.0-M3-dev</version>
+			<version>&jetspeed-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>false</war.bundle>
@@ -42,7 +62,7 @@
 		<dependency>
 			<groupId>jetspeed2</groupId>
 			<artifactId>jetspeed-commons</artifactId>
-			<version>2.0-M3-dev</version>
+			<version>&jetspeed-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>false</war.bundle>
@@ -51,7 +71,7 @@
 		<dependency>
 			<groupId>jetspeed2</groupId>
 			<artifactId>jetspeed-components</artifactId>
-			<version>2.0-M3-dev</version>
+			<version>&jetspeed-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>true</war.bundle>
@@ -167,7 +187,7 @@
     <dependency>
       <groupId>portals-bridges</groupId>
       <artifactId>portals-bridges-common</artifactId>
-      <version>0.1</version>
+      <version>&portals-bridges-common-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>true</war.bundle>
@@ -176,7 +196,7 @@
     <dependency>
       <groupId>portals-bridges</groupId>
       <artifactId>portals-bridges-velocity</artifactId>
-      <version>0.1</version>
+      <version>&portals-bridges-velocity-version;</version>
       <type>jar</type>
       <properties>
         <war.bundle>true</war.bundle>

Added: incubator/graffito/trunk/applications/graffito-portlets/locator.ent
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/graffito-portlets/locator.ent?rev=190526&view=auto
==============================================================================
--- incubator/graffito/trunk/applications/graffito-portlets/locator.ent (added)
+++ incubator/graffito/trunk/applications/graffito-portlets/locator.ent Mon Jun 13 16:07:27 2005
@@ -0,0 +1,2 @@
+<!-- derive locator.ent from parent -->
+<!ENTITY % locator-ent SYSTEM "file:../../locator.ent"> %locator-ent;

Added: incubator/graffito/trunk/applications/graffito-portlets/locator.path
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/graffito-portlets/locator.path?rev=190526&view=auto
==============================================================================
--- incubator/graffito/trunk/applications/graffito-portlets/locator.path (added)
+++ incubator/graffito/trunk/applications/graffito-portlets/locator.path Mon Jun 13 16:07:27 2005
@@ -0,0 +1 @@
+../../
\ No newline at end of file

Modified: incubator/graffito/trunk/applications/graffito-portlets/project.xml
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/applications/graffito-portlets/project.xml?rev=190526&r1=190525&r2=190526&view=diff
==============================================================================
--- incubator/graffito/trunk/applications/graffito-portlets/project.xml (original)
+++ incubator/graffito/trunk/applications/graffito-portlets/project.xml Mon Jun 13 16:07:27 2005
@@ -1,3 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE project [
+  <!ENTITY % locator-entities SYSTEM "file:locator.ent"> %locator-entities;
+]>
+<!--
+Copyright 2004 The Apache Software Foundation
+
+Licensed 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.
+
+  $Id: project.xml 189937 2005-06-10 10:51:53Z ate $
+-->
 <project>
 	<extend>${basedir}/./../../project.xml</extend>
 	<pomVersion>3</pomVersion>
@@ -43,7 +64,7 @@
 		<dependency>
 			<groupId>jetspeed2</groupId>
 			<artifactId>jetspeed-commons</artifactId>
-			<version>2.0-M3-dev</version>
+			<version>&jetspeed-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>false</war.bundle>
@@ -52,7 +73,7 @@
 		<dependency>
 			<groupId>jetspeed2</groupId>
 			<artifactId>jetspeed-components</artifactId>
-			<version>2.0-M3-dev</version>
+			<version>&jetspeed-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>true</war.bundle>
@@ -61,7 +82,7 @@
 		<dependency>
 			<groupId>portals-bridges</groupId>
 			<artifactId>portals-bridges-common</artifactId>
-			<version>0.1</version>
+			<version>&portals-bridges-common-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>true</war.bundle>
@@ -70,7 +91,7 @@
 		<dependency>
 			<groupId>portals-bridges</groupId>
 			<artifactId>portals-bridges-velocity</artifactId>
-			<version>0.1</version>
+			<version>&portals-bridges-velocity-version;</version>
 			<type>jar</type>
 			<properties>
 				<war.bundle>true</war.bundle>
@@ -168,7 +189,7 @@
     <dependency>
         <groupId>jetspeed2</groupId>
         <artifactId>jetspeed2-taglib-treecontrol</artifactId>
-        <version>2.0-M3-dev</version>
+        <version>&jetspeed-version;</version>
         <type>jar</type>
         <properties>
             <war.bundle>true</war.bundle>