You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jl...@apache.org on 2006/04/01 12:03:34 UTC

svn commit: r390636 - in /geronimo/trunk/applications: ldap-realm-demo/pom.xml pom.xml remote-deploy/pom.xml uddi-db/pom.xml uddi-server/pom.xml welcome/pom.xml

Author: jlaskowski
Date: Sat Apr  1 02:03:32 2006
New Revision: 390636

URL: http://svn.apache.org/viewcvs?rev=390636&view=rev
Log:
GERONIMO-1780 - Application migration to Maven 2: ldap-realm, remote-deploy, uddi, welcome
Submitted by: Prasad Kashyap

Added:
    geronimo/trunk/applications/ldap-realm-demo/pom.xml   (with props)
    geronimo/trunk/applications/remote-deploy/pom.xml   (with props)
    geronimo/trunk/applications/uddi-db/pom.xml   (with props)
    geronimo/trunk/applications/uddi-server/pom.xml   (with props)
    geronimo/trunk/applications/welcome/pom.xml   (with props)
Modified:
    geronimo/trunk/applications/pom.xml   (contents, props changed)

Added: geronimo/trunk/applications/ldap-realm-demo/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/ldap-realm-demo/pom.xml?rev=390636&view=auto
==============================================================================
--- geronimo/trunk/applications/ldap-realm-demo/pom.xml (added)
+++ geronimo/trunk/applications/ldap-realm-demo/pom.xml Sat Apr  1 02:03:32 2006
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo.applications</groupId>
+    <artifactId>applications-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <version>${geronimoVersion}</version>
+  <artifactId>geronimo-ldap-demo</artifactId>
+  <packaging>war</packaging>
+  <name>Geronimo LDAP Demo Application</name>
+    <description>
+        This is a very simple application that is intended to demonstrate the ldap
+        security mechanism.
+    </description>
+
+</project>

Propchange: geronimo/trunk/applications/ldap-realm-demo/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/trunk/applications/ldap-realm-demo/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: geronimo/trunk/applications/ldap-realm-demo/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/trunk/applications/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/pom.xml?rev=390636&r1=390635&r2=390636&view=diff
==============================================================================
--- geronimo/trunk/applications/pom.xml (original)
+++ geronimo/trunk/applications/pom.xml Sat Apr  1 02:03:32 2006
@@ -34,6 +34,291 @@
   <description>Geronimo Applications</description>
 
   <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <modules>
+    <module>demo</module>
+    <module>jmxdebug</module>
+    <module>ldap-realm-demo</module>
+    <module>remote-deploy</module>
+    <module>uddi-db</module>
+    <module>uddi-server</module>
+    <module>welcome</module>
+  </modules>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo</groupId>
+    <artifactId>geronimo-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.geronimo.applications</groupId>
+  <artifactId>applications-parent</artifactId>
+  <version>${geronimoVersion}</version>
+  <packaging>pom</packaging>
+  <name>Geronimo Applications</name>
+  <description>Geronimo Applications</description>
+
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <modules>
+    <module>demo</module>
+    <module>jmxdebug</module>
+    <module>ldap-realm-demo</module>
+    <module>remote-deploy</module>
+    <module>uddi-db</module>
+    <module>uddi-server</module>
+    <module>welcome</module>
+  </modules>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo</groupId>
+    <artifactId>geronimo-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.geronimo.applications</groupId>
+  <artifactId>applications-parent</artifactId>
+  <version>${geronimoVersion}</version>
+  <packaging>pom</packaging>
+  <name>Geronimo Applications</name>
+  <description>Geronimo Applications</description>
+
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <modules>
+    <module>demo</module>
+    <module>jmxdebug</module>
+    <module>ldap-realm-demo</module>
+    <module>remote-deploy</module>
+    <module>uddi-db</module>
+    <module>uddi-server</module>
+    <module>welcome</module>
+  </modules>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo</groupId>
+    <artifactId>geronimo-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.geronimo.applications</groupId>
+  <artifactId>applications-parent</artifactId>
+  <version>${geronimoVersion}</version>
+  <packaging>pom</packaging>
+  <name>Geronimo Applications</name>
+  <description>Geronimo Applications</description>
+
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <modules>
+    <module>demo</module>
+    <module>jmxdebug</module>
+    <module>ldap-realm-demo</module>
+    <module>remote-deploy</module>
+    <module>uddi-db</module>
+    <module>uddi-server</module>
+    <module>welcome</module>
+  </modules>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo</groupId>
+    <artifactId>geronimo-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.geronimo.applications</groupId>
+  <artifactId>applications-parent</artifactId>
+  <version>${geronimoVersion}</version>
+  <packaging>pom</packaging>
+  <name>Geronimo Applications</name>
+  <description>Geronimo Applications</description>
+
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <warSourceDirectory>${basedir}/src/webapp</warSourceDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <modules>
+    <module>demo</module>
+    <module>jmxdebug</module>
+    <module>ldap-realm-demo</module>
+    <module>remote-deploy</module>
+    <module>uddi-db</module>
+    <module>uddi-server</module>
+    <module>welcome</module>
+  </modules>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo</groupId>
+    <artifactId>geronimo-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.geronimo.applications</groupId>
+  <artifactId>applications-parent</artifactId>
+  <version>${geronimoVersion}</version>
+  <packaging>pom</packaging>
+  <name>Geronimo Applications</name>
+  <description>Geronimo Applications</description>
+
+  <build>
     <plugins>
       <plugin>
         <artifactId>maven-war-plugin</artifactId>

Propchange: geronimo/trunk/applications/pom.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Apr  1 02:03:32 2006
@@ -1 +1 @@
-Date Rev
+Rev Date

Added: geronimo/trunk/applications/remote-deploy/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/remote-deploy/pom.xml?rev=390636&view=auto
==============================================================================
--- geronimo/trunk/applications/remote-deploy/pom.xml (added)
+++ geronimo/trunk/applications/remote-deploy/pom.xml Sat Apr  1 02:03:32 2006
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo.applications</groupId>
+    <artifactId>applications-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <version>${geronimoVersion}</version>
+  <artifactId>geronimo-remote-deploy</artifactId>
+  <packaging>war</packaging>
+  <name>Geronimo Remote Deploy Application</name>
+  <description>
+        This application is essentially a servlet that accepts file upload
+        requests from remote clients, which is necessary for remote
+        deployment operations to work properly.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-servlet_2.4_spec</artifactId>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.geronimo.applications</groupId>
+      <artifactId>geronimo-remote-deploy-lib</artifactId>
+      <version>${geronimoVersion}</version>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: geronimo/trunk/applications/remote-deploy/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/trunk/applications/remote-deploy/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: geronimo/trunk/applications/remote-deploy/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/trunk/applications/uddi-db/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/uddi-db/pom.xml?rev=390636&view=auto
==============================================================================
--- geronimo/trunk/applications/uddi-db/pom.xml (added)
+++ geronimo/trunk/applications/uddi-db/pom.xml Sat Apr  1 02:03:32 2006
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo.applications</groupId>
+    <artifactId>applications-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>geronimo-uddi-db</artifactId>
+  <version>${geronimoVersion}</version>
+  <name>Geronimo UDDI Server Database</name>
+  <description>Geronimo UDDI Server Database</description>
+
+  <build>
+    
+
+    <resources>
+      <resource>
+        <!-- ${project.build.directory} doesn't work in the following line. -->
+        <directory>${basedir}/target/resources</directory>
+      </resource>
+    </resources>
+
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>generate-resources</phase>
+            <configuration>
+              <tasks>
+                <property name="derby.system.home" value="${project.build.directory}/resources/META-INF/${pom.artifactId}/var/derby"/>
+                <property name="derby.storage.fileSyncTransactionLog" value="true"/>
+                <delete dir="${derby.system.home}"/>
+                <mkdir dir="${derby.system.home}"/>
+                <sql driver="org.apache.derby.jdbc.EmbeddedDriver"
+                  url="jdbc:derby:${derby.system.home}/UddiDatabase;create=true"
+                  userid="" password="" autocommit="true" onerror="abort" delimiter=";">
+                  <fileset dir="src/sql"/>
+                  <classpath>
+                    <fileset dir="${settings.localRepository}/org/apache/derby/derby/${derbyVersion}">
+                      <include name="**/derby-${derbyVersion}.jar" />
+                    </fileset>
+                  </classpath>
+                </sql>
+              </tasks>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Propchange: geronimo/trunk/applications/uddi-db/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/trunk/applications/uddi-db/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: geronimo/trunk/applications/uddi-db/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/trunk/applications/uddi-server/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/uddi-server/pom.xml?rev=390636&view=auto
==============================================================================
--- geronimo/trunk/applications/uddi-server/pom.xml (added)
+++ geronimo/trunk/applications/uddi-server/pom.xml Sat Apr  1 02:03:32 2006
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo.applications</groupId>
+    <artifactId>applications-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <version>${geronimoVersion}</version>
+  <artifactId>geronimo-uddi-server</artifactId>
+  <packaging>war</packaging>
+  <name>Geronimo UDDI Server</name>
+  <description>Geronimo UDDI Server</description>
+
+</project>

Propchange: geronimo/trunk/applications/uddi-server/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/trunk/applications/uddi-server/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: geronimo/trunk/applications/uddi-server/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/trunk/applications/welcome/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/applications/welcome/pom.xml?rev=390636&view=auto
==============================================================================
--- geronimo/trunk/applications/welcome/pom.xml (added)
+++ geronimo/trunk/applications/welcome/pom.xml Sat Apr  1 02:03:32 2006
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  
+    Copyright 2006 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <parent>
+    <groupId>org.apache.geronimo.applications</groupId>
+    <artifactId>applications-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <version>${geronimoVersion}</version>
+  <artifactId>geronimo-welcome</artifactId>
+  <packaging>war</packaging>
+  <name>Geronimo Welcome Application</name>
+  <description>
+        This is a very simple application that is intended to serve as the default page
+        that can be viewed when the server is first installed so that someone can see
+        that the installation is working.
+  </description>
+
+</project>

Propchange: geronimo/trunk/applications/welcome/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/trunk/applications/welcome/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: geronimo/trunk/applications/welcome/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml