Author: jochen
Date: Fri Nov 24 04:15:59 2006
New Revision: 478856

URL: http://svn.apache.org/viewvc?view=rev&rev=478856
Log:
Pulling JAXME-87 in. We have a Maven 2 build now, but the site isn't yet done.

Added:
    webservices/jaxme/branches/MAVEN/jaxme-pm/src/test/db/initdb.sql
    webservices/jaxme/branches/MAVEN/pom.xml
Modified:
    webservices/jaxme/branches/MAVEN/jaxme-xs/   (props changed)

Added: webservices/jaxme/branches/MAVEN/jaxme-pm/src/test/db/initdb.sql
URL: 
http://svn.apache.org/viewvc/webservices/jaxme/branches/MAVEN/jaxme-pm/src/test/db/initdb.sql?view=auto&rev=478856
==============================================================================
--- webservices/jaxme/branches/MAVEN/jaxme-pm/src/test/db/initdb.sql (added)
+++ webservices/jaxme/branches/MAVEN/jaxme-pm/src/test/db/initdb.sql Fri Nov 24 
04:15:59 2006
@@ -0,0 +1,11 @@
+CREATE TABLE httpSession (
+  id INT NOT NULL PRIMARY KEY,
+  ipaddress VARCHAR(15) NOT NULL,
+  logintime TIMESTAMP NOT NULL,
+  lastaction TIMESTAMP NOT NULL,
+  expiretime SMALLINT NOT NULL,
+  cookie VARCHAR(25) NOT NULL,
+  randomSeed DOUBLE NOT NULL,
+  precedence REAL,
+  UNIQUE (cookie)
+);

Propchange: webservices/jaxme/branches/MAVEN/jaxme-xs/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Nov 24 04:15:59 2006
@@ -0,0 +1 @@
+target

Added: webservices/jaxme/branches/MAVEN/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/jaxme/branches/MAVEN/pom.xml?view=auto&rev=478856
==============================================================================
--- webservices/jaxme/branches/MAVEN/pom.xml (added)
+++ webservices/jaxme/branches/MAVEN/pom.xml Fri Nov 24 04:15:59 2006
@@ -0,0 +1,132 @@
+<?xml version="1.0"?>
+<!--
+
+  Copyright 2005  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.
+
+-->
+<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>
+  <groupId>org.apache.ws.jaxme</groupId>
+  <artifactId>jaxme-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>JaxMe Parent</name>
+  <version>1-SNAPSHOT</version>
+  <url>http://ws.apache.org/jaxme</url>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/JAXME</url>
+  </issueManagement>
+  <inceptionYear>2006</inceptionYear>
+  <mailingLists>
+    <mailingList>
+      <name>JaxMe Developers</name>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      <post>jaxme-dev@ws.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/ws-jaxme-dev/</archive>
+      <otherArchives>
+        <otherArchive>http://marc.theaimsgroup.com/?l=jaxme-dev</otherArchive>
+      </otherArchives>
+    </mailingList>
+  </mailingLists>
+  <developers>
+    <developer>
+      <name>Jochen Wiedmann</name>
+      <id>jochen</id>
+      <email>[EMAIL PROTECTED]</email>
+    </developer>
+  </developers>
+  <contributors>
+    <contributor>
+      <name>Robert Eric Reeves</name>
+      <email>[EMAIL PROTECTED]</email>
+    </contributor>
+    <contributor>
+      <name>Anthony Vito</name>
+      <email>[EMAIL PROTECTED]</email>
+    </contributor>
+  </contributors>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/webservices/jaxme/trunk/ws-jaxme/</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/jaxme/trunk/ws-jaxme/</developerConnection>
+    
<url>http://svn.apache.org/viewcvs.cgi/webservices/jaxme/trunk/ws-jaxme/</url>
+  </scm>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.3</source>
+            <target>1.3</target>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>changes-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <repository>
+      <id>apache-maven</id>
+      <name>Apache Maven Repository</name>
+      
<url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+    </repository>
+    <snapshotRepository>
+      <id>apache-maven-snapshots</id>
+      <name>Apache Maven Snapshot Repository</name>
+      
<url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+    </snapshotRepository>
+    <site>
+      <id>jaxme-site</id>
+      <name>JaxMe Site</name>
+      <url>scp://people.apache.org/www/ws.apache.org/jaxme</url>
+    </site>
+  </distributionManagement>
+
+  <modules>
+    <module>jaxme-api</module>
+    <module>jaxme-js</module>
+    <module>jaxme-pm</module>
+    <module>jaxme-jm</module>
+    <module>jaxme-xs</module>
+<!-- <module>maven-jaxme-plugin</module> -->
+  </modules>
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to