User: ecrutchfield
Date: 06/06/22 13:29:50
Modified: andromda-cs pom.xml
Log:
add andromda-site plugin and turn on testing
Revision Changes Path
1.3 +26 -7 cartridges/andromda-cs/pom.xml
Index: pom.xml
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-cs/pom.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -r1.2 -r1.3
--- pom.xml 14 Jun 2006 15:13:36 -0000 1.2
+++ pom.xml 22 Jun 2006 20:29:50 -0000 1.3
@@ -10,7 +10,7 @@
<artifactId>andromda-cs-cartridge</artifactId>
<packaging>andromda-cartridge</packaging>
<name>AndroMDA C# Cartridge</name>
- <description>Produces C# value objects from a model.</description>
+ <description>Produces C# objects from a model.</description>
<developers>
<developer>
<name>Naresh Bhatia</name>
@@ -44,10 +44,29 @@
<locales>en</locales>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.andromda.maven.plugins</groupId>
+ <artifactId>andromda-site-plugin</artifactId>
+ <version>3.2-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <id>profile-transform</id>
+ <goals>
+ <goal>profile-xsl</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>namespace-transform</id>
+ <goals>
+ <goal>namespace-xsl</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<properties>
- <maven.test.skip>true</maven.test.skip>
+ <maven.test.skip>false</maven.test.skip>
<model.uri>file:${pom.basedir}/src/main/uml/empty-model.xmi</model.uri>
<test.model.uri>jar:file:${pom.basedir}/src/test/uml/CsCartridgeTestModel.xml.zip!/CsCartridgeTestModel.xml</test.model.uri>
</properties>
|