From: Eric C. <ecr...@us...> - 2006-09-17 17:32:25
|
User: ecrutchfield Date: 06/09/17 10:32:24 Added: andromda-aspdotnet pom.xml .cvsignore Log: initial version Revision Changes Path 1.1 cartridges/andromda-aspdotnet/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.cartridges</groupId> <artifactId>andromda-cartridge-plugins</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>andromda-aspdotnet-cartridge</artifactId> <name>AndroMDA ASP.NET Cartridge</name> <description> The ASP.NET cartridge is used to generate ASP.NET applications from UML models using both static and dynamic model elements. </description> <packaging>andromda-cartridge</packaging> <developers> <developer> <name>Eric Crutchfield</name> <id>ecrutchfield</id> <email>ecr...@co...</email> <roles> <role>Developer</role> </roles> </developer> <developer> <name>Louis Coude</name> <id>Louis</id> <email>l_...@ho...</email> <roles> <role>Developer</role> </roles> </developer> <developer> <name>Naresh Bhatia</name> <id>nbhatia</id> <email>na...@an...</email> <roles> <role>Developer</role> </roles> </developer> </developers> <contributors/> <build> <plugins> <plugin> <groupId>org.andromda.maven.plugins</groupId> <artifactId>andromda-maven-plugin</artifactId> <dependencies> <dependency> <groupId>org.andromda.cartridges</groupId> <artifactId>andromda-meta-cartridge</artifactId> <version>3.2-SNAPSHOT</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.andromda.maven.plugins</groupId> <artifactId>andromda-cartridge-plugin</artifactId> <dependencies> <dependency> <groupId>org.andromda.translationlibraries</groupId> <artifactId>andromda-ocl-query-library</artifactId> <version>3.2-SNAPSHOT</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.andromda.maven.site</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <dependencies> <dependency> <groupId>org.andromda.maven.site</groupId> <artifactId>andromda-doxia-module-xdoc</artifactId> <version>3.2-SNAPSHOT</version> </dependency> </dependencies> <configuration> <locales>en</locales> <outputEncoding>UTF-8</outputEncoding> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <minmemory>128m</minmemory> <maxmemory>512</maxmemory> <sourcepath>src/main/java;target/src</sourcepath> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <configuration> <targetJdk>1.5</targetJdk> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <reportSets> <reportSet> <reports> <report>changes-report</report> <report>jira-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId> <reportSets> <reportSet> <id>All Reports</id> <configuration> <type>range</type> <range>90</range> </configuration> <reports> <report>changelog</report> <report>file-activity</report> <report>dev-activity</report> </reports> </reportSet> </reportSets> </plugin> --> </plugins> </reporting> <properties> <maven.test.skip>true</maven.test.skip> <model.uri>jar:file:${pom.basedir}/src/main/uml/AspDotNetMetafacadeModelv4.xml.zip!/AspDotNetMetafacadeModelv4.xml</model.uri> <!--test.model.uri>jar:file:${pom.basedir}/src/test/uml/AspDotNetMetafacadeTestModel.xml.zip!/AspDotNetMetafacadeTestModel.xml</test.model.uri--> </properties> </project> 1.1 cartridges/andromda-aspdotnet/.cvsignore Index: .cvsignore =================================================================== target *.log |