|
From: <de...@us...> - 2011-11-09 23:19:43
|
Revision: 6639
http://fudaa.svn.sourceforge.net/fudaa/?rev=6639&view=rev
Author: deniger
Date: 2011-11-09 23:19:37 +0000 (Wed, 09 Nov 2011)
Log Message:
-----------
Modified Paths:
--------------
trunk/soft/fudaa-crue/ui-application/pom.xml
Property Changed:
----------------
trunk/soft/fudaa-crue/ui-application/
Property changes on: trunk/soft/fudaa-crue/ui-application
___________________________________________________________________
Modified: svn:ignore
- target
nb-configuration.xml
+ target
nb-configuration.xml
.project
.classpath
.settings
nbactions.xml
Modified: trunk/soft/fudaa-crue/ui-application/pom.xml
===================================================================
--- trunk/soft/fudaa-crue/ui-application/pom.xml 2011-11-09 23:19:11 UTC (rev 6638)
+++ trunk/soft/fudaa-crue/ui-application/pom.xml 2011-11-09 23:19:37 UTC (rev 6639)
@@ -1,49 +1,63 @@
<?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>
+ <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>
+ <artifactId>application</artifactId>
+ <packaging>nbm-application</packaging>
- <name>Crue UI Application</name>
+ <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>
+ <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>
+ </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>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ui-study</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ui-modelling</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>ui-post</artifactId>
+ </dependency>
+ <dependency>
+ <artifactId>jcl-over-slf4j</artifactId>
+ <groupId>org.slf4j</groupId>
+ </dependency>
+ <dependency>
+ <artifactId>logback-classic</artifactId>
+ <groupId>ch.qos.logback</groupId>
+ </dependency>
+ </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>nbm-maven-plugin</artifactId>
- </plugin>
+ <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>
@@ -59,29 +73,64 @@
</configuration>
</plugin>
-->
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
+ <plugin>
+ <groupId>org.eclipse.m2e</groupId>
+ <artifactId>lifecycle-mapping</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <lifecycleMappingMetadata>
+ <pluginExecutions>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>
+ org.apache.maven.plugins
+ </groupId>
+ <artifactId>
+ maven-antrun-plugin
+ </artifactId>
+ <versionRange>
+ [1.3,)
+ </versionRange>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </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>
-
- <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>
+ </build>
+ </profile>
+ </profiles>
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <de...@us...> - 2012-04-23 19:38:49
|
Revision: 7101
http://fudaa.svn.sourceforge.net/fudaa/?rev=7101&view=rev
Author: deniger
Date: 2012-04-23 19:38:43 +0000 (Mon, 23 Apr 2012)
Log Message:
-----------
ajout entr?\195?\169e dans logs
Modified Paths:
--------------
trunk/soft/fudaa-crue/ui-application/pom.xml
trunk/soft/fudaa-crue/ui-application/src/main/resources/etc/fudaacrue.conf
Modified: trunk/soft/fudaa-crue/ui-application/pom.xml
===================================================================
--- trunk/soft/fudaa-crue/ui-application/pom.xml 2012-04-23 07:44:06 UTC (rev 7100)
+++ trunk/soft/fudaa-crue/ui-application/pom.xml 2012-04-23 19:38:43 UTC (rev 7101)
@@ -43,6 +43,11 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
+ <artifactId>ui-commandline</artifactId>
+ <type>nbm</type>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
<artifactId>ui-branding</artifactId>
<type>nbm</type>
</dependency>
Modified: trunk/soft/fudaa-crue/ui-application/src/main/resources/etc/fudaacrue.conf
===================================================================
--- trunk/soft/fudaa-crue/ui-application/src/main/resources/etc/fudaacrue.conf 2012-04-23 07:44:06 UTC (rev 7100)
+++ trunk/soft/fudaa-crue/ui-application/src/main/resources/etc/fudaacrue.conf 2012-04-23 19:38:43 UTC (rev 7101)
@@ -4,7 +4,7 @@
# options used by the launcher by default, can be overridden by explicit
# command line switches
-default_options="--branding fudaacrue -J-Xms24m -J-Xmx512m"
+default_options="--branding fudaacrue -J-Xms24m -J-Xmx512m --multi-instances"
# for development purposes you may wish to append: -J-Dnetbeans.logger.console=true -J-ea
# default location of JDK/JRE, can be overridden by using --jdkhome <dir> switch
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <de...@us...> - 2013-07-11 20:26:29
|
Revision: 8435
http://sourceforge.net/p/fudaa/svn/8435
Author: deniger
Date: 2013-07-11 20:26:23 +0000 (Thu, 11 Jul 2013)
Log Message:
-----------
CRUE-554
Modified Paths:
--------------
trunk/soft/fudaa-crue/ui-application/pom.xml
Added Paths:
-----------
trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/
trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/ReplaceVistaIcon.exe
trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/icon.ico
Modified: trunk/soft/fudaa-crue/ui-application/pom.xml
===================================================================
--- trunk/soft/fudaa-crue/ui-application/pom.xml 2013-07-10 21:30:18 UTC (rev 8434)
+++ trunk/soft/fudaa-crue/ui-application/pom.xml 2013-07-11 20:26:23 UTC (rev 8435)
@@ -165,5 +165,99 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>replace-icon-unix</id>
+ <activation>
+ <os>
+ <family>Unix</family>
+ </os>
+ <file>
+ <exists>${wine.bottle}\drive_c\${resourcehacker.installdir}\ResHacker.exe</exists>
+ </file>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target>
+
+ <echo message ="Replacing icon of Windows launcher executable" />
+ <!-- replace executable with ResHacker.exe path on windows -->
+ <exec executable="wine" resolveexecutable="true" logerror="true">
+ <!-- replace value with location of installation bottle, or remove on windows -->
+ <env key="WINEPREFIX" value="${wine.bottle}" />
+ <!-- remove this argument when running on windows -->
+ <arg value="${resourcehacker.installdir}\ResHacker.exe"/>
+ <arg value="-addoverwrite"/>
+ <arg value="${project.build.directory}/${brandingToken}/bin/${brandingToken}.exe,"/>
+ <arg value="${project.build.directory}/${brandingToken}/bin/${brandingToken}.exe,"/>
+ <arg value="${application.ico},"/>
+ <arg value="ICONGROUP,"/>
+ <arg value="MAINICON,"/>
+ <arg value="0"/>
+ </exec>
+
+ <zip destfile="${project.build.directory}/${project.artifactId}-${project.version}.zip" update="true">
+ <zipfileset dir="${project.build.directory}/${brandingToken}/bin" includes="*.exe" prefix="${brandingToken}/bin" />
+ </zip>
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>release</id>
+ <activation>
+ <file>
+ <exists>${basedir}/src/main/resources/installer/ReplaceVistaIcon.exe</exists>
+ </file>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>icon</id>
+ <phase>package</phase>
+ <configuration>
+ <target>
+ <echo message ="Replacing icon of Windows launcher executable" />
+ <exec
+ executable="${basedir}/src/main/resources/installer/ReplaceVistaIcon.exe"
+ resolveexecutable="true">
+ <arg
+ line="${project.build.directory}/${brandingToken}/bin/${brandingToken}.exe ${basedir}/src/main/resources/installer/icon.ico"/>
+ </exec>
+ <zip
+ destfile="${project.build.directory}/Fudaa-Crue-${project.version}.zip"
+ update="true" >
+ <zipfileset dir="target/${brandingToken}/bin"
+ includes="${brandingToken}.exe" prefix="${brandingToken}/bin" />
+ </zip>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>
Added: trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/ReplaceVistaIcon.exe
===================================================================
(Binary files differ)
Index: trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/ReplaceVistaIcon.exe
===================================================================
--- trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/ReplaceVistaIcon.exe 2013-07-10 21:30:18 UTC (rev 8434)
+++ trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/ReplaceVistaIcon.exe 2013-07-11 20:26:23 UTC (rev 8435)
Property changes on: trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/ReplaceVistaIcon.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/icon.ico
===================================================================
(Binary files differ)
Index: trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/icon.ico
===================================================================
--- trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/icon.ico 2013-07-10 21:30:18 UTC (rev 8434)
+++ trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/icon.ico 2013-07-11 20:26:23 UTC (rev 8435)
Property changes on: trunk/soft/fudaa-crue/ui-application/src/main/resources/installer/icon.ico
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|