From: <de...@us...> - 2011-11-07 21:27:20
|
Revision: 6615 http://fudaa.svn.sourceforge.net/fudaa/?rev=6615&view=rev Author: deniger Date: 2011-11-07 21:27:14 +0000 (Mon, 07 Nov 2011) Log Message: ----------- Modified Paths: -------------- trunk/soft/fudaa-crue/pom.xml Modified: trunk/soft/fudaa-crue/pom.xml =================================================================== --- trunk/soft/fudaa-crue/pom.xml 2011-11-07 13:36:38 UTC (rev 6614) +++ trunk/soft/fudaa-crue/pom.xml 2011-11-07 21:27:14 UTC (rev 6615) @@ -1,94 +1,122 @@ <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> - - <properties> - <projetEncoding>UTF-8</projetEncoding> - <javaCompiler>1.6</javaCompiler> - <targetJdk>1.6</targetJdk> - <fudaa-common.version>1.2-SNAPSHOT</fudaa-common.version> - </properties> - <parent> - <groupId>org.fudaa.pom</groupId> - <artifactId>soft-pom</artifactId> - <version>0.8</version> - </parent> - <groupId>org.fudaa.soft.fudaa-crue</groupId> - <artifactId>fudaa-crue</artifactId> - <version>0.38-SNAPSHOT</version> - <name>Fudaa-Crue</name> - <packaging>pom</packaging> - <modules> - <module>crue-server</module> - <module>crue-ui</module> - </modules> - <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.fudaa.framework.fudaa</groupId> - <artifactId>fudaa-common</artifactId> - <version>${fudaa-common.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> - <dependency> - <groupId>common-jxpath</groupId> - <artifactId>common-jxpath</artifactId> - <version>1.3</version> - </dependency> - <dependency> - <groupId>org.fudaa.framework.fudaa</groupId> - <artifactId>fudaa-common</artifactId> - <version>${fudaa-common.version}</version> - </dependency> - <dependency> - <groupId>org.fudaa.soft.fudaa-crue</groupId> - <artifactId>crue-server</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.fudaa.soft.fudaa-crue</groupId> - <artifactId>crue-ui</artifactId> - <version>${project.version}</version> - </dependency> + <modelVersion>4.0.0</modelVersion> + <properties> + <projetEncoding>UTF-8</projetEncoding> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <javaCompiler>1.6</javaCompiler> + <targetJdk>1.6</targetJdk> + <fudaa-common.version>1.2-SNAPSHOT</fudaa-common.version> + <netbeans.run.params.ide/> + <netbeans.run.params>${netbeans.run.params.ide}</netbeans.run.params> + <netbeans.version>RELEASE70</netbeans.version> + <brandingToken>fudaacrue</brandingToken> + </properties> + + <parent> + <groupId>org.fudaa.pom</groupId> + <artifactId>soft-pom</artifactId> + <version>0.8</version> + </parent> + <groupId>org.fudaa.soft.fudaa-crue</groupId> + <artifactId>fudaa-crue</artifactId> + <version>0.38-SNAPSHOT</version> + <name>Fudaa-Crue</name> + <packaging>pom</packaging> + <!--to add to settings.xml--> + <repositories> + <repository> + <id>netbeans</id> + <name>NetBeans</name> + <url>http://bits.netbeans.org/maven2/</url> + </repository> + </repositories> + <modules> + <module>crue-server</module> + <module>crue-ui</module> + <module>ui-application</module> + <module>ui-branding</module> + <module>ui-study</module> + </modules> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.fudaa.framework.fudaa</groupId> + <artifactId>fudaa-common</artifactId> + <version>${fudaa-common.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> + <groupId>common-jxpath</groupId> + <artifactId>common-jxpath</artifactId> + <version>1.3</version> + </dependency> + <dependency> + <groupId>org.fudaa.framework.fudaa</groupId> + <artifactId>fudaa-common</artifactId> + <version>${fudaa-common.version}</version> + </dependency> + <dependency> + <groupId>org.fudaa.soft.fudaa-crue</groupId> + <artifactId>crue-server</artifactId> + <version>${project.version}</version> + </dependency> + <!--deprecated crue-ui laisser pour devel nouvelle application--> + <dependency> + <groupId>org.fudaa.soft.fudaa-crue</groupId> + <artifactId>crue-ui</artifactId> + <version>${project.version}</version> + </dependency> + <!-- Externes --> - <dependency> - <groupId>commons-jxpath</groupId> - <artifactId>commons-jxpath</artifactId> - <version>1.3</version> - </dependency> - <dependency> - <groupId>joda-time</groupId> - <artifactId>joda-time</artifactId> - <version>1.6</version> - </dependency> - </dependencies> - </dependencyManagement> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.6</source> - <target>1.6</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <configuration> - <classpathContainers> - <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6</classpathContainer> - </classpathContainers> - <additionalConfig> - <file> - <name>.settings/org.eclipse.core.resources.prefs</name> - <location>../src/config/eclipse/org.eclipse.core.resources.prefs</location> - </file> - </additionalConfig> - </configuration> - </plugin> - </plugins> - </build> + <dependency> + <groupId>commons-jxpath</groupId> + <artifactId>commons-jxpath</artifactId> + <version>1.3</version> + </dependency> + <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + <version>1.6</version> + </dependency> + </dependencies> + </dependencyManagement> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>nbm-maven-plugin</artifactId> + <version>3.5</version> + <extensions>true</extensions> + <configuration> + <brandingToken>${brandingToken}</brandingToken> + <cluster>${brandingToken}</cluster> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <configuration> + <classpathContainers> + <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6</classpathContainer> + </classpathContainers> + <additionalConfig> + <file> + <name>.settings/org.eclipse.core.resources.prefs</name> + <location>../src/config/eclipse/org.eclipse.core.resources.prefs</location> + </file> + </additionalConfig> + </configuration> + </plugin> + </plugins> + </build> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |