You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(178) |
Feb
(169) |
Mar
(286) |
Apr
(117) |
May
(98) |
Jun
(68) |
Jul
(63) |
Aug
(121) |
Sep
(88) |
Oct
(124) |
Nov
(2) |
Dec
(111) |
2007 |
Jan
(224) |
Feb
(69) |
Mar
(10) |
Apr
(72) |
May
(7) |
Jun
(21) |
Jul
(33) |
Aug
(35) |
Sep
(12) |
Oct
(22) |
Nov
(5) |
Dec
(6) |
2008 |
Jan
(2) |
Feb
(10) |
Mar
(39) |
Apr
(58) |
May
(34) |
Jun
(9) |
Jul
(27) |
Aug
(10) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
From: Vance K. <va...@us...> - 2006-03-17 09:45:14
|
User: vancek Date: 06/03/17 01:33:58 Modified: andromda-ejb3/src/site/xdoc howto13.xml Log: refactored docs to show default interceptor with <<Interceptor>> stereotype and @andromda.service.interceptor.default tagged value. added example uml with code. Revision Changes Path 1.2 +46 -6 cartridges/andromda-ejb3/src/site/xdoc/howto13.xml Index: howto13.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto13.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- howto13.xml 9 Mar 2006 05:45:29 -0000 1.1 +++ howto13.xml 17 Mar 2006 09:33:58 -0000 1.2 @@ -13,7 +13,44 @@ </p> <p> All interceptors are configured through the ejb-jar deployment descriptor. The EJB3 cartridges - does NOT use annotations to define interceptors and it's exclusions. + does NOT use annotations to define interceptors and their exclusions. + </p> + <p> + The following example shows how to model a default interceptor as well as 2 class level + interceptors for the <code>RentalService</code> bean. Method level interceptor are + modelled in the same fashion, but a dependency is drawn from the session bean method. + </p> + <p> + <img src="images/org/andromda/test/13/a/uml.gif"/> + </p> + <p> + <ul> + <li class="gen">Auto-generated source that does not need manual editing</li> + <li class="impl">Auto-generated source that should be edited manually</li> + <li class="changed">File that is affected by the modifications applied in this section</li> + </ul> + </p> + <p> + <ul> + <li class="gen"><a href="src/org/andromda/test/howto13/a/CarEmbeddable.java.txt"><code>CarEmbeddable.java</code></a></li> + <li class="impl"><a href="src/org/andromda/test/howto13/a/Car.java.txt"><code>Car.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/CarType.java.txt"><code>CarType.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/PersonEmbeddable.java.txt"><code>PersonEmbeddable.java</code></a></li> + <li class="impl"><a href="src/org/andromda/test/howto13/a/Person.java.txt"><code>Person.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/ServiceLocator.java.txt"><code>ServiceLocator.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/RentalServiceBean.java.txt"><code>RentalServiceBean.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/RentalServiceRemote.java.txt"><code>RentalServiceRemote.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/RentalServiceDelegate.java.txt"><code>RentalServiceDelegate.java</code></a></li> + <li class="impl"><a href="src/org/andromda/test/howto13/a/RentalServiceBeanImpl.java.txt"><code>RentalServiceBeanImpl.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/RentalServiceException.java.txt"><code>RentalServiceException.java</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/RentalException.java.txt"><code>RentalException.java</code></a></li> + <li class="gen"><a class="changed" href="src/org/andromda/test/howto13/a/ejb-jar.xml.txt"><code>ejb-jar.xml</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/jboss.xml.txt"><code>jboss.xml</code></a></li> + <li class="gen"><a href="src/org/andromda/test/howto13/a/persistence.xml.txt"><code>persistence.xml</code></a></li> + <li class="impl"><a class="changed" href="src/org/andromda/test/howto13/a/DefaultInterceptor.java.txt"><code>DefaultInterceptor.java</code></a></li> + <li class="impl"><a class="changed" href="src/org/andromda/test/howto13/a/LogInterceptor.java.txt"><code>LogInterceptor.java</code></a></li> + <li class="impl"><a class="changed" href="src/org/andromda/test/howto13/a/AdminCheckerInterceptor.java.txt"><code>AdminCheckerInterceptor.java</code></a></li> + </ul> </p> <a name="Default_Interceptors"/> <subsection name="Default Interceptor"> @@ -23,8 +60,10 @@ business methods of beans. </p> <p> - To define a default interceptor for your deployment, model the - <![CDATA[<<DefaultInterceptor>>]]> stereotype on a class. Since this interceptor is invoked + To define a default interceptor for your deployment, model the standard + <![CDATA[<<Interceptor>>]]> stereotype on a class and specify the + <code>@andromda.service.interceptor.default</code> tagged value as true. + Since this interceptor is invoked for all business methods of all beans, you do not need to model any dependencies on it. The cartridge will generate the class with the necessary interceptor operation and corresponding annotations within the interceptor class. It will also add the @@ -126,11 +165,12 @@ <p> Once the interceptors have been generated, they will never be overwritten. This way, you can add your implementation for the interceptor and call <code>InvocationContext.proceed()</code> - to continue to call the next interceptors. + to continue to call the next interceptor. </p> <p> - Similar to bean classes, bean classes enjoy the benefits of dependency injection in much the same - way. You can inject resources using the <code>@Resource</code> annotation or an + Similar to bean classes, interceptor classes enjoy the benefits of dependency injection + in much the same way. + You can inject resources using the <code>@Resource</code> annotation or an entity manager using the <code>@PersistenceContext</code> annotation. </p> </subsection> |
From: Eric C. <ecr...@us...> - 2006-03-17 05:57:11
|
User: ecrutchfield Date: 06/03/16 21:57:10 Modified: andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf andromda.xml.vsl Log: fix asp.net properties Revision Changes Path 1.5 +4 -4 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf/andromda.xml.vsl Index: andromda.xml.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf/andromda.xml.vsl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- andromda.xml.vsl 17 Mar 2006 03:49:45 -0000 1.4 +++ andromda.xml.vsl 17 Mar 2006 05:57:10 -0000 1.5 @@ -126,7 +126,7 @@ <property name="web_generated">${web.generated.dir}</property> <property name="web_manual">${web.manual.dir}</property> <property name="webAssemblyName">${applicationPackage}.web</property> - #if (${vsSolution} && ${dotNetVersion}=="1.1") + #if (${dotNetVersion}=="1.1") <property name="AssemblyTitle">${applicationName}</property> <property name="AssemblyDescription"></property> <property name="AssemblyConfiguration"></property> @@ -135,10 +135,10 @@ <property name="AssemblyCopyright"></property> <property name="AssemblyTrademark"></property> <property name="AssemblyCulture"></property> - <property name="AssemblyVersion">1.0.*.*</property> + <property name="AssemblyVersion">1.0.*</property> <property name="AssemblyDelaySign">true</property> - <property name="AssemblyKeyFile">""</property> - <property name="AssemblyKeyName">""</property> + <property name="AssemblyKeyFile"></property> + <property name="AssemblyKeyName"></property> #end </properties> </namespace> |
From: Eric C <ecr...@us...> - 2006-03-17 04:35:15
|
User: ecrutchfield Date: 06/03/16 20:35:13 Added: maven2/plugins/andromdanetapp readme Log: add Revision Changes Path 1.1 plugins/maven2/plugins/andromdanetapp/readme Index: readme =================================================================== This is the AndroMDA .NET Application Generator Maven Plugin and is the first of two pieces needed to generate .NET AndroMDA applications. Download and install this plugin as well as the csharp project (http://cvs.sourceforge.net/viewcvs.py/andromdaplugins/plugins/andromdapp/projects/csharp/maven2/) To install, download the source code from here http://cvs.sourceforge.net/viewcvs.py/andromdaplugins/plugins/maven2/plugins/andromdanetapp/ and type 'mvn install' at the command line. Then do the same for the csharp project. |
From: Eric C <ecr...@us...> - 2006-03-17 04:34:51
|
User: ecrutchfield Date: 06/03/16 20:34:49 Added: andromdapp/projects/csharp/maven2 readme Log: add Revision Changes Path 1.1 plugins/andromdapp/projects/csharp/maven2/readme Index: readme =================================================================== NOTE: You must have Maven 2.0.1 or higher AND the Maven 2 version of AndroMDA 3.2-RC1-SNAPSHOT installed to use this plugin. To install the CSharp project generator you must download the source from CVS (http://cvs.sourceforge.net/viewcvs.py/andromdaplugins/plugins/andromdapp/projects/csharp/maven2/). You'll also need to download and install the AndroMDA .NET Application Generator Maven Plugin from CVS (http://cvs.sourceforge.net/viewcvs.py/andromdaplugins/plugins/maven2/plugins/andromdanetapp/). Once you have both of these installed locally, you can execute the following command to generate a new .NET AndroMDA project: mvn andromdanetapp:generate Select 'dotnet' when prompted for the type of project to generate. |
From: Eric C <ecr...@us...> - 2006-03-17 03:52:09
|
User: ecrutchfield Date: 06/03/16 19:52:08 Modified: andromdapp/projects/csharp/maven2/src/main/resources/META-INF/andromdapp andromdapp.xml Log: removed VS solution generation question Revision Changes Path 1.3 +2 -2 plugins/andromdapp/projects/csharp/maven2/src/main/resources/META-INF/andromdapp/andromdapp.xml Index: andromdapp.xml =================================================================== RCS file: /cvsroot/andromdaplugins/plugins/andromdapp/projects/csharp/maven2/src/main/resources/META-INF/andromdapp/andromdapp.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -w -r1.2 -r1.3 --- andromdapp.xml 6 Mar 2006 20:27:08 -0000 1.2 +++ andromdapp.xml 17 Mar 2006 03:52:08 -0000 1.3 @@ -93,13 +93,13 @@ <response>2.0</response> </responses> </prompt> - <prompt id="vsSolution" setResponseAsTrue="true"> + <!--prompt id="vsSolution" setResponseAsTrue="true"> <text>Would you like a VS Solution file generated?</text> <responses type="java.lang.Boolean"> <response>yes</response> <response>no</response> </responses> - </prompt> + </prompt--> </promptGroup> <promptGroup name="Component Types"> <documentation> |
From: Eric C <ecr...@us...> - 2006-03-17 03:49:46
|
User: ecrutchfield Date: 06/03/16 19:49:45 Modified: andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf andromda.xml.vsl Log: fix visualStudioVersion Revision Changes Path 1.4 +1 -3 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf/andromda.xml.vsl Index: andromda.xml.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf/andromda.xml.vsl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- andromda.xml.vsl 11 Mar 2006 17:24:48 -0000 1.3 +++ andromda.xml.vsl 17 Mar 2006 03:49:45 -0000 1.4 @@ -28,11 +28,9 @@ #if ($dotNetVersion == "1.1") #set ($visualStudioVersion="2003") #else - #set ($visualStudioVersion="2003") + #set ($visualStudioVersion="2005") #end -#if (${vsSolution}) <property name="visualStudioVersion">${visualStudioVersion}</property> -#end #if (${dotNetVersion} == "1.1") <property name="languageMappingsUri">file:${conf.dir}/dotnet-1.1-mappings/CsMappings.xml</property> <property name="wrapperMappingsUri">file:${conf.dir}/dotnet-1.1-mappings/CsWrapperMappings.xml</property> |
From: Eric C <ecr...@us...> - 2006-03-17 03:40:59
|
User: ecrutchfield Date: 06/03/16 19:40:57 Modified: . pom.xml Log: added andromdapp and maven2/plugins to modules Revision Changes Path 1.6 +2 -0 plugins/pom.xml Index: pom.xml =================================================================== RCS file: /cvsroot/andromdaplugins/plugins/pom.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -w -r1.5 -r1.6 --- pom.xml 19 Dec 2005 05:14:09 -0000 1.5 +++ pom.xml 17 Mar 2006 03:40:57 -0000 1.6 @@ -172,6 +172,8 @@ </build> <modules> <module>cartridges</module> + <module>andromdapp</module> + <module>maven2/plugins</module> </modules> <repositories> <repository> |
From: Eric C <ecr...@us...> - 2006-03-17 03:39:40
|
User: ecrutchfield Date: 06/03/16 19:39:38 Modified: . pom.xml Log: added .Net cartridges to modules Revision Changes Path 1.5 +4 -0 cartridges/pom.xml Index: pom.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/pom.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- pom.xml 28 Dec 2005 00:29:05 -0000 1.4 +++ pom.xml 17 Mar 2006 03:39:38 -0000 1.5 @@ -69,6 +69,10 @@ <modules> <module>andromda-database</module> <module>andromda-ejb3</module> + <module>andromda-cs</module> + <module>andromda-nhibernate</module> + <module>andromda-nspring</module> + <!--module>andromda-aspdotnet</module--> </modules> <properties> <build.src>${pom.basedir}/target/src</build.src> |
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> |
From: <sar...@us...> - 2006-03-16 23:06:15
|
User: sarbogast Date: 06/03/16 15:06:12 components/embedder/src/test/java/org/andromda/components/embedder - New directory |
From: <sar...@us...> - 2006-03-16 23:06:15
|
User: sarbogast Date: 06/03/16 15:06:12 components/embedder/src/test/java/org/andromda/components - New directory |
From: <sar...@us...> - 2006-03-16 23:06:15
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/main - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/test/java - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/main/java/org/andromda/components - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:12 components/embedder/src/test/java/org - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/main/java/org/andromda - New directory |
From: <sar...@us...> - 2006-03-16 23:06:14
|
User: sarbogast Date: 06/03/16 15:06:12 components/embedder/src/test/java/org/andromda - New directory |
From: <sar...@us...> - 2006-03-16 23:06:13
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/main/java - New directory |
From: <sar...@us...> - 2006-03-16 23:06:13
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/test - New directory |
From: <sar...@us...> - 2006-03-16 23:06:13
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/main/java/org/andromda/components/embedder - New directory |
From: <sar...@us...> - 2006-03-16 23:06:13
|
User: sarbogast Date: 06/03/16 15:06:11 components/embedder/src/main/java/org - New directory |
From: Chad B. <cwb...@us...> - 2006-03-16 21:33:32
|
User: cwbrandon Date: 06/03/16 13:33:27 Modified: . modules Log: make components a module Revision Changes Path 1.4 +1 -0 CVSROOT/modules Index: modules =================================================================== RCS file: /cvsroot/andromdaplugins/CVSROOT/modules,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- modules 19 Dec 2005 04:15:39 -0000 1.3 +++ modules 16 Mar 2006 21:33:27 -0000 1.4 @@ -26,4 +26,5 @@ # spread out over the entire source repository. cartridges cartridges +components components andromda-plugins plugins &cartridges \ No newline at end of file |
From: Chad B. <cwb...@us...> - 2006-03-16 20:51:37
|
User: cwbrandon Date: 06/03/16 12:51:25 Added: . .project Log: Revision Changes Path 1.1 components/.project Index: .project =================================================================== <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>components</name> <comment></comment> <projects> </projects> <buildSpec> </buildSpec> <natures> </natures> </projectDescription> |