From: <de...@us...> - 2011-11-07 21:39:16
|
Revision: 6616 http://fudaa.svn.sourceforge.net/fudaa/?rev=6616&view=rev Author: deniger Date: 2011-11-07 21:39:10 +0000 (Mon, 07 Nov 2011) Log Message: ----------- Added Paths: ----------- trunk/soft/fudaa-crue/ui-application/ trunk/soft/fudaa-crue/ui-application/pom.xml Added: trunk/soft/fudaa-crue/ui-application/pom.xml =================================================================== --- trunk/soft/fudaa-crue/ui-application/pom.xml (rev 0) +++ trunk/soft/fudaa-crue/ui-application/pom.xml 2011-11-07 21:39:10 UTC (rev 6616) @@ -0,0 +1,87 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.fudaa.soft.fudaa-crue</groupId> + <artifactId>fudaa-crue</artifactId> + <version>0.38-SNAPSHOT</version> + </parent> + + <artifactId>application</artifactId> + <packaging>nbm-application</packaging> + + <name>Crue UI Application</name> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <netbeans.run.params.ide/> + <netbeans.run.params>${netbeans.run.params.ide}</netbeans.run.params> + + </properties> + <dependencies> + <dependency> + <groupId>org.netbeans.cluster</groupId> + <artifactId>platform</artifactId> + <version>${netbeans.version}</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ui-branding</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ui-study</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>nbm-maven-plugin</artifactId> + </plugin> + <!-- To run NbModuleSuite in integration-test phase: + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.7.1</version> + <configuration> + <systemProperties> + <property> + <name>cluster.path.final</name> + <value>${project.build.directory}/${brandingToken}/${brandingToken}:${project.build.directory}/${brandingToken}/platform</value> + </property> + </systemProperties> + </configuration> + </plugin> + --> + </plugins> + </build> + + <profiles> + <profile> + <id>deployment</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>nbm-maven-plugin</artifactId> + <executions> + <execution> + <id>extra</id> + <goals> + <goal>autoupdate</goal> + <goal>webstart-app</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |