From: <sar...@us...> - 2006-03-16 23:09:25
|
User: sarbogast Date: 06/03/16 15:09:22 Modified: . .project Added: . .classpath pom.xml embedder pom.xml Log: Basic project structure setup Revision Changes Path 1.2 +12 -0 components/.project Index: .project =================================================================== RCS file: /cvsroot/andromdaplugins/components/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- .project 16 Mar 2006 20:51:23 -0000 1.1 +++ .project 16 Mar 2006 23:09:21 -0000 1.2 @@ -5,7 +5,19 @@ <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> 1.1 components/.classpath Index: .classpath =================================================================== <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="embedder/src/main/java"/> <classpathentry kind="src" path="embedder/src/test/java"/> <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="bin"/> </classpath> 1.1 components/pom.xml Index: pom.xml =================================================================== <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.andromda.components</groupId> <artifactId>andromda-components</artifactId> <packaging>pom</packaging> <version>1.0-SNAPSHOT</version> <name>AndroMDA Components</name> <description> Components for the AndroMDA (http://www.andromda.org} MDA framework. </description> <inceptionYear>2006</inceptionYear> <url>http://www.andromda.org</url> <issueManagement> <system>jira</system> <url>http://jira.andromda.org/</url> </issueManagement> <scm> <connection>scm:cvs:pserver:anonymous:@cvs.sourceforge.net:/cvsroot/andromdaplugins:components</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.net:/cvsroot/andromdaplugins:components</developerConnection> <url>http://cvs.sourceforge.net/viewcvs.py/andromdaplugins/components/</url> </scm> <organization> <name>AndroMDA.org</name> <url>http://www.andromda.org/</url> </organization> <ciManagement> <system>continuum</system> <notifiers> <notifier> <type>mail</type> <configuration> <address>com...@an...</address> </configuration> </notifier> </notifiers> </ciManagement> <mailingLists> <mailingList> <name>AndroMDA Plugins Community</name> <subscribe>http://lists.sourceforge.net/lists/listinfo/andromdaplugins-community</subscribe> <unsubscribe>http://lists.sourceforge.net/lists/listinfo/andromdaplugins-community</unsubscribe> <archive>http://sourceforge.net/mailarchive/forum.php?forum=andromdaplugins-community</archive> </mailingList> <mailingList> <name>AndroMDA Plugins CVS List</name> <subscribe>http://lists.sourceforge.net/lists/listinfo/andromdaplugins-cvs</subscribe> <unsubscribe>http://lists.sourceforge.net/lists/listinfo/andromdaplugins-cvs</unsubscribe> <archive>http://sourceforge.net/mailarchive/forum.php?forum=andromdaplugins-cvs</archive> </mailingList> </mailingLists> <developers> <developer> <id>mattes3</id> <name>Matthias Bohlen</name> <email>mat...@an...</email> <organization>AndroMDA</organization> <roles> <role>Project Admin</role> </roles> <timezone>1</timezone> </developer> <developer> <id>cwbrandon</id> <name>Chad Brandon</name> <email>ch...@an...</email> <organization>AndroMDA</organization> <roles> <role>Project Admin</role> </roles> <timezone>-6</timezone> </developer> <developer> <id>draftdog</id> <name>Wouter Zoons</name> <email>wo...@an...</email> <organization>AndroMDA</organization> <roles> <role>Project Admin</role> </roles> <timezone>1</timezone> </developer> <developer> <id>sarbogast</id> <name>Sébastien Arbogast</name> <email>sar...@us...</email> <roles> <role>Project Developer</role> </roles> <timezone>1</timezone> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <groupId>org.andromda</groupId> <artifactId>andromda-core</artifactId> <version>3.2-RC1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.andromda</groupId> <artifactId>andromda-utils</artifactId> <version>3.2-RC1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.andromda.metafacades</groupId> <artifactId>andromda-metafacades-uml</artifactId> <version>3.2-RC1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.andromda.cartridges</groupId> <artifactId>andromda-meta-cartridge</artifactId> <version>3.2-RC1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.andromda.translationlibraries</groupId> <artifactId>andromda-ocl-validation-library</artifactId> <version>3.2-RC1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.andromda.profiles.uml14</groupId> <artifactId>andromda-profile</artifactId> <version>3.2-RC1-SNAPSHOT</version> <type>xml.zip</type> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.12</version> </dependency> </dependencies> </dependencyManagement> <build> <defaultGoal>install</defaultGoal> <pluginManagement> <plugins> <plugin> <groupId>org.andromda.maven.plugins</groupId> <artifactId>andromda-maven-plugin</artifactId> <version>3.2-RC1-SNAPSHOT</version> <executions> <execution> <goals> <goal>run</goal> </goals> <configuration> <buildSourceDirectory>${pom.basedir}/target/src</buildSourceDirectory> <configurationUri>file:${pom.basedir}/../conf/andromda.xml</configurationUri> <lastModifiedCheck>true</lastModifiedCheck> </configuration> </execution> </executions> </plugin> <plugin> <extensions>true</extensions> <groupId>org.andromda.maven.plugins</groupId> <artifactId>andromda-cartridge-plugin</artifactId> <version>3.2-RC1-SNAPSHOT</version> <executions> <execution> <goals> <goal>test</goal> </goals> <configuration> <configurationUri>file:${pom.basedir}/conf/test/andromda.xml</configurationUri> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <modules> <module>e</module> </modules> <repositories> <repository> <id>andromda</id> <name>AndroMDA Repository</name> <url>http://team.andromda.org/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>andromda</id> <name>AndroMDA Repository</name> <url>http://team.andromda.org/maven2</url> </pluginRepository> </pluginRepositories> <prerequisites> <maven>2.0.1</maven> </prerequisites> <distributionManagement> <repository> <id>andromda-repository</id> <name>AndroMDA Repository</name> <url>scp://galaxy.andromda.org/var/www/andromda/maven2</url> </repository> </distributionManagement> </project> 1.1 components/embedder/pom.xml Index: pom.xml =================================================================== <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.andromda.components</groupId> <artifactId>andromda-components</artifactId> <version>1.0-SNAPSHOT</version> </parent> <groupId>org.andromda.components.embedder</groupId> <artifactId>andromda-embedder-component</artifactId> <packaging>pom</packaging> <name>AndroMDA Components: Embedder</name> <dependencies> <dependency> <groupId>org.andromda</groupId> <artifactId>andromda-core</artifactId> </dependency> <dependency> <groupId>org.andromda</groupId> <artifactId>andromda-utils</artifactId> </dependency> <dependency> <groupId>org.andromda.metafacades</groupId> <artifactId>andromda-metafacades-uml</artifactId> </dependency> <dependency> <groupId>org.andromda.cartridges</groupId> <artifactId>andromda-meta-cartridge</artifactId> </dependency> <dependency> <groupId>org.andromda.translationlibraries</groupId> <artifactId>andromda-ocl-validation-library</artifactId> </dependency> <dependency> <groupId>org.andromda.profiles.uml14</groupId> <artifactId>andromda-profile</artifactId> <type>xml.zip</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> <include>**/*.properties</include> </includes> </resource> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>target/src</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> </build> <modules> <module>andromda-database</module> <module>andromda-ejb3</module> </modules> <properties> <build.src>${pom.basedir}/target/src</build.src> <java.src.dir>${pom.basedir}/src/main/java</java.src.dir> <test.output.dir>${pom.basedir}/target/cartridge-test/actual</test.output.dir> </properties> </project> |