Author: deepal
Date: Fri Feb  8 03:30:37 2008
New Revision: 13469

Log:

updating pom.xml for the release 
 core -1.0.1


Modified:
   branches/registry/1_0/modules/core/pom.xml
   
branches/registry/1_0/modules/core/src/main/java/org/wso2/registry/servlet/registry.xml
   
branches/registry/1_0/modules/core/src/main/resources/database-scripts/mysql-complete.sql
   branches/registry/1_0/modules/distribution/pom.xml
   branches/registry/1_0/modules/documentation/pom.xml
   branches/registry/1_0/modules/documentation/src/site/site.xml
   branches/registry/1_0/modules/webapps/pom.xml
   branches/registry/1_0/pom.xml

Modified: branches/registry/1_0/modules/core/pom.xml
==============================================================================
--- branches/registry/1_0/modules/core/pom.xml  (original)
+++ branches/registry/1_0/modules/core/pom.xml  Fri Feb  8 03:30:37 2008
@@ -4,12 +4,13 @@
     <parent>
         <groupId>org.wso2.registry</groupId>
         <artifactId>org.wso2.registry</artifactId>
-        <version>1.0-QA1</version>
+        <version>1.0</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <artifactId>wso2registry-core</artifactId>
     <packaging>jar</packaging>
+    <version>1.0.1</version>
 
     <name>WSO2 Registry - Core</name>
     <build>

Modified: 
branches/registry/1_0/modules/core/src/main/java/org/wso2/registry/servlet/registry.xml
==============================================================================
--- 
branches/registry/1_0/modules/core/src/main/java/org/wso2/registry/servlet/registry.xml
     (original)
+++ 
branches/registry/1_0/modules/core/src/main/java/org/wso2/registry/servlet/registry.xml
     Fri Feb  8 03:30:37 2008
@@ -14,6 +14,13 @@
         <password>password</password>
         <driverName>org.apache.derby.jdbc.ClientDriver</driverName>
     </dbconfig>
+     <dbconfig name="mysql">
+        <url>jdbc:mysql://localhost:3306/wso2registry</url>
+        <userName>root</userName>
+        <password></password>
+        <driverName>com.mysql.jdbc.Driver</driverName>
+    </dbconfig>
+
 
     <dbconfig name="registry-datasource">
         <dataSource>dataSourceName</dataSource>

Modified: 
branches/registry/1_0/modules/core/src/main/resources/database-scripts/mysql-complete.sql
==============================================================================
--- 
branches/registry/1_0/modules/core/src/main/resources/database-scripts/mysql-complete.sql
   (original)
+++ 
branches/registry/1_0/modules/core/src/main/resources/database-scripts/mysql-complete.sql
   Fri Feb  8 03:30:37 2008
@@ -67,6 +67,14 @@
             UNIQUE (AID,VN),
             FOREIGN KEY (AID) REFERENCES ARTIFACTS (AID));
 
+CREATE TABLE DEPENDENCY (AID INTEGER NOT NULL,
+                          VN INTEGER NOT NULL,
+                          DAID INTEGER NOT NULL,
+                          DVN INTEGER NOT NULL,
+                          UNIQUE (AID,VN,DAID,DVN),
+                          FOREIGN KEY (DAID) REFERENCES ARTIFACTS (AID),
+                          FOREIGN KEY (AID) REFERENCES ARTIFACTS (AID));
+
 CREATE TABLE UM_USERS (ID VARCHAR(255), USER_NAME VARCHAR(255) NOT NULL 
UNIQUE, PASSWORD VARCHAR(255) NOT NULL, PRIMARY KEY (ID));
 CREATE TABLE UM_USER_ATTRIBUTES (ID VARCHAR(255), ATTR_NAME VARCHAR(255) NOT 
NULL, ATTR_VALUE VARCHAR(255), USER_ID VARCHAR(255), FOREIGN KEY (USER_ID) 
REFERENCES UM_USERS(ID) ON DELETE CASCADE, PRIMARY KEY (ID));
 CREATE TABLE UM_ROLES (ID VARCHAR(255), ROLE_NAME VARCHAR(255) NOT NULL 
UNIQUE, PRIMARY KEY (ID));

Modified: branches/registry/1_0/modules/distribution/pom.xml
==============================================================================
--- branches/registry/1_0/modules/distribution/pom.xml  (original)
+++ branches/registry/1_0/modules/distribution/pom.xml  Fri Feb  8 03:30:37 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.wso2.registry</groupId>
         <artifactId>org.wso2.registry</artifactId>
-        <version>1.0-QA1</version>
+        <version>1.0</version>
     </parent>
 
 

Modified: branches/registry/1_0/modules/documentation/pom.xml
==============================================================================
--- branches/registry/1_0/modules/documentation/pom.xml (original)
+++ branches/registry/1_0/modules/documentation/pom.xml Fri Feb  8 03:30:37 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.wso2.registry</groupId>
         <artifactId>org.wso2.registry</artifactId>
-        <version>1.0-QA1</version>
+        <version>1.0</version>
     </parent>
 
     <artifactId>wso2registry-documentation</artifactId>

Modified: branches/registry/1_0/modules/documentation/src/site/site.xml
==============================================================================
--- branches/registry/1_0/modules/documentation/src/site/site.xml       
(original)
+++ branches/registry/1_0/modules/documentation/src/site/site.xml       Fri Feb 
 8 03:30:37 2008
@@ -10,7 +10,7 @@
   </bannerRight>
   <body>
                <menu name="Documents">
-                       <item name="Introduction" href="WSO2Registry.html" />
+                       <item name="Introduction" href="userguide.xml" />
                </menu>
 <menu name="Project Information">
                        <item name="Project Team" href="team-list.html" />

Modified: branches/registry/1_0/modules/webapps/pom.xml
==============================================================================
--- branches/registry/1_0/modules/webapps/pom.xml       (original)
+++ branches/registry/1_0/modules/webapps/pom.xml       Fri Feb  8 03:30:37 2008
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.wso2.registry</groupId>
         <artifactId>org.wso2.registry</artifactId>
-        <version>1.0-QA1</version>
+        <version>1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>wso2registry-webapp</artifactId>
@@ -110,7 +110,7 @@
         <dependency>
             <groupId>org.wso2.registry</groupId>
             <artifactId>wso2registry-core</artifactId>
-            <version>1.0-QA1</version>
+            <version>1.0.1</version>
             <exclusions>
                 
<exclusion><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId></exclusion>
                 
<exclusion><groupId>tomcat</groupId><artifactId>naming-factory</artifactId></exclusion>
@@ -153,19 +153,5 @@
                 
<exclusion><groupId>tomcat</groupId><artifactId>naming-resources</artifactId></exclusion>
             </exclusions>
         </dependency>
-
-        <!-- Struts and tiles dependencies -->
-        <!--<dependency>-->
-            <!--<groupId>com.opensymphony</groupId>-->
-            <!--<artifactId>xwork</artifactId>-->
-        <!--</dependency>-->
-        <!--<dependency>-->
-            <!--<groupId>freemarker</groupId>-->
-            <!--<artifactId>freemarker</artifactId>-->
-        <!--</dependency>-->
-        <!--<dependency>-->
-            <!--<groupId>opensymphony</groupId>-->
-            <!--<artifactId>ognl</artifactId>-->
-        <!--</dependency>-->
     </dependencies>
 </project>

Modified: branches/registry/1_0/pom.xml
==============================================================================
--- branches/registry/1_0/pom.xml       (original)
+++ branches/registry/1_0/pom.xml       Fri Feb  8 03:30:37 2008
@@ -24,7 +24,7 @@
     <groupId>org.wso2.registry</groupId>
     <artifactId>org.wso2.registry</artifactId>
     <packaging>pom</packaging>
-    <version>1.0-QA1</version>
+    <version>1.0</version>
     <name>WSO2 Repository</name>
     <url>http://wso2.org/projects/registry</url>
 
@@ -372,19 +372,18 @@
     </build>
 
     <properties>
-        <version>1.0-SNAPSHOT</version>
+        <version>1.0</version>
         <junit.version>3.8.2</junit.version>
         <log4j.version>1.2.13</log4j.version>
         <javamail.version>1.4</javamail.version>
         <activation.version>1.1</activation.version>
 
-        <commons.dbcp.version>1.3-SNAPSHOT</commons.dbcp.version>
         <commons.logging.version>1.1</commons.logging.version>
         <commons.beanutils.version>1.7.0</commons.beanutils.version>
         <commons.collections.version>3.2</commons.collections.version>
         <commons.digester.version>1.8</commons.digester.version>
         <commons.fileupload.version>1.1.1</commons.fileupload.version>
-        <usermanager.version>0.6</usermanager.version>
+        <usermanager.version>0.61</usermanager.version>
 
         <!--For Web apps-->
         <servlet.api.version>2.3</servlet.api.version>

_______________________________________________
Registry-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/registry-dev

Reply via email to