Author: aadamchik
Date: Sun Jul 30 13:16:55 2006
New Revision: 426934

URL: http://svn.apache.org/viewvc?rev=426934&view=rev
Log:
setting up DVModeler Eclipse project

Added:
    incubator/cayenne/main/trunk/modeler/dvmodeler/.classpath
    incubator/cayenne/main/trunk/modeler/dvmodeler/.project
Modified:
    incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml

Added: incubator/cayenne/main/trunk/modeler/dvmodeler/.classpath
URL: 
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/modeler/dvmodeler/.classpath?rev=426934&view=auto
==============================================================================
--- incubator/cayenne/main/trunk/modeler/dvmodeler/.classpath (added)
+++ incubator/cayenne/main/trunk/modeler/dvmodeler/.classpath Sun Jul 30 
13:16:55 2006
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+       <classpathentry kind="src" path="src/main/java" />
+       <classpathentry kind="src" path="src/main/resources" />
+       <classpathentry kind="con" 
path="org.eclipse.jdt.launching.JRE_CONTAINER" />
+       <classpathentry kind="con"
+               path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER" />
+       <classpathentry kind="output" path="target/classes" />
+</classpath>

Added: incubator/cayenne/main/trunk/modeler/dvmodeler/.project
URL: 
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/modeler/dvmodeler/.project?rev=426934&view=auto
==============================================================================
--- incubator/cayenne/main/trunk/modeler/dvmodeler/.project (added)
+++ incubator/cayenne/main/trunk/modeler/dvmodeler/.project Sun Jul 30 13:16:55 
2006
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>cayenne-dvmodeler</name>
+       <comment>Cayenne Data Viewer</comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+               <buildCommand>
+                       <name>org.maven.ide.eclipse.maven2Builder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+               <nature>org.maven.ide.eclipse.maven2Nature</nature>
+       </natures>
+</projectDescription>

Modified: incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml?rev=426934&r1=426933&r2=426934&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml (original)
+++ incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml Sun Jul 30 13:16:55 
2006
@@ -1,142 +1,143 @@
 <?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.
+       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
-    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>
-
-    <parent>
-      <groupId>org.apache.cayenne.modeler</groupId>
-      <artifactId>cayenne-modeler-parent</artifactId>
-      <version>3.0-incubating-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>cayenne-dvmodeler</artifactId>
-    <name>Cayenne Data Viewer Modeler</name>
-    <description>Cayenne Data Viewer</description>
-    <packaging>jar</packaging>
-
-    <dependencies>
-      
-      <dependency>
-        <groupId>javax.servlet</groupId>
-        <artifactId>servlet-api</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>ant</groupId>
-        <artifactId>ant</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-collections</groupId>
-        <artifactId>commons-collections</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-lang</groupId>
-        <artifactId>commons-lang</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-logging</groupId>
-        <artifactId>commons-logging</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-dbcp</groupId>
-        <artifactId>commons-dbcp</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-pool</groupId>
-        <artifactId>commons-pool</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>velocity</groupId>
-        <artifactId>velocity</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.objectstyle.ashwood</groupId>
-        <artifactId>ashwood</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>geronimo-jms_1.1_spec</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jivesoftware</groupId>
-        <artifactId>smack</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jivesoftware</groupId>
-        <artifactId>smackx</artifactId>
-      </dependency>
-
-      <dependency>
-       <groupId>foundrylogic.vpp</groupId>
-       <artifactId>vpp</artifactId>
-      </dependency>
-
-      <dependency>
-       <groupId>jdom</groupId>
-       <artifactId>jdom</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jgoodies</groupId>
-        <artifactId>looks</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jgoodies</groupId>
-        <artifactId>forms</artifactId>
-      </dependency>
-
-    </dependencies>
-
-    <build>
-      <plugins>
-       <plugin>
-          <artifactId>maven-jar-plugin</artifactId>
-          <configuration>
-            <archive>
-              <manifest>
-               <mainClass>org.apache.cayenne.dataview.Main</mainClass>
-              </manifest>
-            </archive>
-          </configuration>
-       </plugin>
-      </plugins>
-    </build>
+<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>
+
+       <parent>
+               <groupId>org.apache.cayenne.modeler</groupId>
+               <artifactId>cayenne-modeler-parent</artifactId>
+               <version>3.0-incubating-SNAPSHOT</version>
+       </parent>
+
+       <artifactId>cayenne-dvmodeler</artifactId>
+       <name>Cayenne Data Viewer Modeler</name>
+       <description>Cayenne Data Viewer</description>
+       <packaging>jar</packaging>
+
+       <dependencies>
+
+               <dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>servlet-api</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>log4j</groupId>
+                       <artifactId>log4j</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>ant</groupId>
+                       <artifactId>ant</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-collections</groupId>
+                       <artifactId>commons-collections</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-lang</groupId>
+                       <artifactId>commons-lang</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-logging</groupId>
+                       <artifactId>commons-logging</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-dbcp</groupId>
+                       <artifactId>commons-dbcp</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-pool</groupId>
+                       <artifactId>commons-pool</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>velocity</groupId>
+                       <artifactId>velocity</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.objectstyle.ashwood</groupId>
+                       <artifactId>ashwood</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.apache.geronimo.specs</groupId>
+                       <artifactId>geronimo-jms_1.1_spec</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jivesoftware</groupId>
+                       <artifactId>smack</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jivesoftware</groupId>
+                       <artifactId>smackx</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>foundrylogic.vpp</groupId>
+                       <artifactId>vpp</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jdom</groupId>
+                       <artifactId>jdom</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jgoodies</groupId>
+                       <artifactId>looks</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jgoodies</groupId>
+                       <artifactId>forms</artifactId>
+               </dependency>
+
+       </dependencies>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <configuration>
+                                       <archive>
+                                               <manifest>
+                                                       <mainClass>
+                                                               
org.apache.cayenne.dataview.Main
+                                                       </mainClass>
+                                               </manifest>
+                                       </archive>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
 
 </project>


Reply via email to