r1892 - in trunk: . jaxx-tutorial jaxx-tutorial-config jaxx-tutorial-helloworld jaxx-tutorial-helloworld2 src/site/rst/tutos
Author: tchemit Date: 2010-05-11 16:39:32 +0200 (Tue, 11 May 2010) New Revision: 1892 Url: http://nuiton.org/repositories/revision/jaxx/1892 Log: add headers make tutorial jnlp ok make tutorial poms standalone Modified: trunk/jaxx-tutorial-config/pom.xml trunk/jaxx-tutorial-helloworld/pom.xml trunk/jaxx-tutorial-helloworld2/pom.xml trunk/jaxx-tutorial/pom.xml trunk/pom.xml trunk/src/site/rst/tutos/helloworld2.rst Modified: trunk/jaxx-tutorial/pom.xml =================================================================== --- trunk/jaxx-tutorial/pom.xml 2010-05-11 13:15:08 UTC (rev 1891) +++ trunk/jaxx-tutorial/pom.xml 2010-05-11 14:39:32 UTC (rev 1892) @@ -44,11 +44,11 @@ <artifactId>jaxx-tutorial</artifactId> <modules> + <module>../jaxx-tutorial-helloworld</module> + <module>../jaxx-tutorial-helloworld2</module> <module>../jaxx-tutorial-config</module> </modules> - - <!-- ************************************************************* --> <!-- *** Project Information ************************************* --> <!-- ************************************************************* --> @@ -62,43 +62,11 @@ <packaging>pom</packaging> - <build> + <properties> - <pluginManagement> + <jnlp.skip>true</jnlp.skip> - <plugins> - - <plugin> - <groupId>org.nuiton.thirdparty</groupId> - <artifactId>webstart-maven-plugin</artifactId> - <configuration> - <jnlpExtensions> - <jnlpExtension> - <name>sun</name> - <title>Sun MicroSystems</title> - <vendor>Sun MicroSystems, Inc.</vendor> - <includes> - <include>javax.help:javahelp</include> - </includes> - </jnlpExtension> - <jnlpExtension> - <name>jxlayer</name> - <title>Swing labs JXLayer</title> - <vendor>Swing Labs</vendor> - <includes> - <include>org.swinglabs:jxlayer</include> - </includes> - </jnlpExtension> - </jnlpExtensions> - </configuration> - </plugin> - - </plugins> - - </pluginManagement> - - </build> - + </properties> <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> @@ -148,6 +116,31 @@ <goals> <goal>jnlp-inline</goal> </goals> + <configuration> + <jnlp> + <mainClass>${main.class}</mainClass> + <allPermissions>true</allPermissions> + <offlineAllowed>true</offlineAllowed> + </jnlp> + <jnlpExtensions> + <jnlpExtension> + <name>sun</name> + <title>Sun MicroSystems</title> + <vendor>Sun MicroSystems, Inc.</vendor> + <includes> + <include>javax.help:javahelp</include> + </includes> + </jnlpExtension> + <jnlpExtension> + <name>jxlayer</name> + <title>Swing labs JXLayer</title> + <vendor>Swing Labs</vendor> + <includes> + <include>org.swinglabs:jxlayer</include> + </includes> + </jnlpExtension> + </jnlpExtensions> + </configuration> </execution> </executions> </plugin> @@ -170,7 +163,7 @@ <plugin> <groupId>org.nuiton.thirdparty</groupId> <artifactId>webstart-maven-plugin</artifactId> - <version>1.0-alpha-2-cl_20091001</version> + <version>1.0-alpha-2-cl_20100511</version> </plugin> </plugins> </reporting> @@ -186,8 +179,7 @@ </property> </activation> <properties> - <jnlp.codebase>http://maven-site.liosalfar/jaxx/jaxx-demo/jnlp - </jnlp.codebase> + <jnlp.codebase>http://maven-site.liosalfar/jaxx/jaxx-demo/jnlp</jnlp.codebase> </properties> </profile> Modified: trunk/jaxx-tutorial-config/pom.xml =================================================================== --- trunk/jaxx-tutorial-config/pom.xml 2010-05-11 13:15:08 UTC (rev 1891) +++ trunk/jaxx-tutorial-config/pom.xml 2010-05-11 14:39:32 UTC (rev 1892) @@ -46,17 +46,17 @@ <dependencies> - <!-- sibiling dependencies --> + <!-- JAXX dependencies --> <dependency> - <groupId>${project.groupId}</groupId> + <groupId>org.nuiton.jaxx</groupId> <artifactId>jaxx-runtime</artifactId> - <version>${project.version}</version> + <version>${jaxx.version}</version> </dependency> <dependency> - <groupId>${project.groupId}</groupId> + <groupId>org.nuiton.jaxx</groupId> <artifactId>jaxx-widgets</artifactId> - <version>${project.version}</version> + <version>${jaxx.version}</version> </dependency> </dependencies> @@ -76,34 +76,32 @@ <properties> - <maven.jar.main.class>jaxx.demo.config.RunDemo</maven.jar.main.class> + <!-- Jaxx version --> + <jaxx.version>${project.version}</jaxx.version> + + <!-- main class to run --> + + <main.class>jaxx.demo.config.RunDemo</main.class> + + <!-- compiler configuration --> + + <maven.compiler.source>1.5</maven.compiler.source> + <maven.compiler.source>1.5</maven.compiler.source> + + <!-- jaxx configuration --> + <jaxx.addProjectClassPath>true</jaxx.addProjectClassPath> <jaxx.addSourcesToClassPath>true</jaxx.addSourcesToClassPath> <jaxx.autoImportCss>true</jaxx.autoImportCss> - <!-- generate license bundled files --> - <license.generateBundle>true</license.generateBundle> + <!-- to generate jnlp launcher while releasing jaxx --> + <jnlp.skip>false</jnlp.skip> </properties> <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - <resource> - <directory>src/main/java</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <pluginManagement> <plugins> @@ -115,41 +113,37 @@ <useUniqueVersions>false</useUniqueVersions> <addClasspath>true</addClasspath> <classpathPrefix>./lib/</classpathPrefix> + <mainClass>${main.class}</mainClass> </manifest> </archive> </configuration> </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3</version> + </plugin> + + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.1</version> + </plugin> + + <plugin> + <groupId>org.nuiton.i18n</groupId> + <artifactId>maven-i18n-plugin</artifactId> + <version>1.2.2</version> + </plugin> + </plugins> </pluginManagement> <plugins> - <!--plugin> - <groupId>org.nuiton.jaxx</groupId> - <artifactId>maven-jaxx-plugin</artifactId> - <version>${project.version}</version> - <executions> - <execution> - <goals> - <goal>generate</goal> - </goals> - </execution> - </executions> - </plugin--> - <plugin> <groupId>org.nuiton.i18n</groupId> <artifactId>maven-i18n-plugin</artifactId> - <!--configuration> - <treateDefaultEntry>true</treateDefaultEntry> - <entries> - <entry> - <basedir>${maven.gen.dir}/java/</basedir> - </entry> - </entries> - </configuration--> <executions> <execution> <goals> @@ -173,27 +167,13 @@ <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> - <outputDirectory>${project.build.directory}/lib</outputDirectory> + <outputDirectory>target/lib</outputDirectory> <silent>true</silent> </configuration> </execution> </executions> </plugin> - <!--plugin> - <groupId>org.nuiton</groupId> - <artifactId>maven-license-plugin</artifactId> - <executions> - <execution> - <id>attach-licenses</id> - <goals> - <goal>update-project-license</goal> - <goal>add-third-party</goal> - </goals> - </execution> - </executions> - </plugin--> - </plugins> </build> Modified: trunk/jaxx-tutorial-helloworld/pom.xml =================================================================== --- trunk/jaxx-tutorial-helloworld/pom.xml 2010-05-11 13:15:08 UTC (rev 1891) +++ trunk/jaxx-tutorial-helloworld/pom.xml 2010-05-11 14:39:32 UTC (rev 1892) @@ -1,155 +1,185 @@ <?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"> +<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> + <modelVersion>4.0.0</modelVersion> - <!-- ************************************************************* --> - <!-- *** POM Relationships *************************************** --> - <!-- ************************************************************* --> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> - <parent> - <groupId>org.nuiton.jaxx</groupId> - <artifactId>jaxx-tutorial</artifactId> - <version>2.0.2-SNAPSHOT</version> - <relativePath>../jaxx-tutorial</relativePath> - </parent> - + <parent> <groupId>org.nuiton.jaxx</groupId> - <artifactId>jaxx-tutorial-helloworld</artifactId> + <artifactId>jaxx-tutorial</artifactId> + <version>2.0.2-SNAPSHOT</version> + <relativePath>../jaxx-tutorial</relativePath> + </parent> - <dependencies> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>jaxx-tutorial-helloworld</artifactId> - <!-- librairie Jaxx --> - <!-- using properties from parent for tutorial deployment. Replace - ${project.groupId} by org.nuiton.jaxx and ${project.version} by the Jaxx - version if needed--> - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>jaxx-runtime</artifactId> - <version>${project.version}</version> - </dependency> + <dependencies> - </dependencies> + <!-- librairie Jaxx --> - <!-- ************************************************************* --> - <!-- *** Project Information ************************************* --> - <!-- ************************************************************* --> + <dependency> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>jaxx-runtime</artifactId> + <version>${jaxx.version}</version> + </dependency> - <name>${project.artifactId}</name> + </dependencies> - <organization> - <name>Nuiton</name> - <url>http://www.nuiton.org/</url> - </organization> + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> - <!-- ************************************************************* --> - <!-- *** Build Settings ****************************************** --> - <!-- ************************************************************* --> + <name>JAXX :: Tutorial Hello world</name> - <build> - <plugins> + <organization> + <name>Nuiton</name> + <url>http://www.nuiton.org/</url> + </organization> - <plugin> - <groupId>org.nuiton.jaxx</groupId> - <artifactId>maven-jaxx-plugin</artifactId> - <version>2.0.1</version> - <executions> - <execution> - <goals> - <goal>generate</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>2.3</version> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>2.3</version> - <configuration> - <archive> - <manifest> - <addClasspath>true</addClasspath> - <classpathPrefix>./lib/</classpathPrefix> - <mainClass>org.nuiton.jaxx.tutorials.helloworld.helloworld</mainClass> + <properties> - </manifest> - </archive> - </configuration> + <!-- Jaxx version --> - </plugin> + <jaxx.version>${project.version}</jaxx.version> - <plugin> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>copy-dependencies</id> - <goals> - <goal>copy-dependencies</goal> - </goals> - <configuration> - <outputDirectory>target/lib</outputDirectory> - <silent>true</silent> - </configuration> - </execution> - </executions> - </plugin> + <!-- main class to run --> - </plugins> + <main.class>org.nuiton.jaxx.tutorials.helloworld.helloworld</main.class> - </build> + <!-- compiler configuration --> - <!-- ************************************************************* --> - <!-- *** Build Environment ************************************** --> - <!-- ************************************************************* --> + <maven.compiler.source>1.5</maven.compiler.source> + <maven.compiler.source>1.5</maven.compiler.source> - <repositories> + <!-- to generate jnlp launcher while releasing jaxx --> + <jnlp.skip>false</jnlp.skip> + + </properties> + <build> - <!-- nuiton releases repository, needed to get jaxx --> + <pluginManagement> + <plugins> - <repository> - <id>nuiton.release</id> - <name>NuitonReleaseRepository</name> - <url>http://maven.nuiton.org/release</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>warn</checksumPolicy> - </releases> - </repository> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <version>2.3</version> + <configuration> + <archive> + <manifest> + <useUniqueVersions>false</useUniqueVersions> + <addClasspath>true</addClasspath> + <classpathPrefix>./lib/</classpathPrefix> + <mainClass>${main.class}</mainClass> + </manifest> + </archive> + </configuration> + </plugin> - </repositories> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3</version> + </plugin> - <pluginRepositories> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.1</version> + </plugin> - <!-- nuiton plugin releases repository, needed to get jaxx plugin --> + <plugin> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>maven-jaxx-plugin</artifactId> + <version>${jaxx.version}</version> + </plugin> - <pluginRepository> + </plugins> - <id>nuiton.release</id> - <name>NuitonReleaseRepository</name> - <url>http://maven.nuiton.org/release</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>warn</checksumPolicy> - </releases> - </pluginRepository> + </pluginManagement> - </pluginRepositories> + <plugins> + <plugin> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>maven-jaxx-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>copy-dependencies</id> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <outputDirectory>target/lib</outputDirectory> + <silent>true</silent> + </configuration> + </execution> + </executions> + </plugin> + + </plugins> + + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <repositories> + + <!-- nuiton releases repository, needed to get jaxx --> + + <repository> + <id>nuiton.release</id> + <name>NuitonReleaseRepository</name> + <url>http://maven.nuiton.org/release</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + + </repositories> + + <pluginRepositories> + + <!-- nuiton plugin releases repository, needed to get jaxx plugin --> + + <pluginRepository> + + <id>nuiton.release</id> + <name>NuitonReleaseRepository</name> + <url>http://maven.nuiton.org/release</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </pluginRepository> + + </pluginRepositories> + </project> Modified: trunk/jaxx-tutorial-helloworld2/pom.xml =================================================================== --- trunk/jaxx-tutorial-helloworld2/pom.xml 2010-05-11 13:15:08 UTC (rev 1891) +++ trunk/jaxx-tutorial-helloworld2/pom.xml 2010-05-11 14:39:32 UTC (rev 1892) @@ -1,155 +1,184 @@ <?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"> +<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> + <modelVersion>4.0.0</modelVersion> - <!-- ************************************************************* --> - <!-- *** POM Relationships *************************************** --> - <!-- ************************************************************* --> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> - <parent> - <groupId>org.nuiton.jaxx</groupId> - <artifactId>jaxx-tutorial</artifactId> - <version>2.0.2-SNAPSHOT</version> - <relativePath>../jaxx-tutorial</relativePath> - </parent> - + <parent> <groupId>org.nuiton.jaxx</groupId> - <artifactId>jaxx-tutorial-helloworld2</artifactId> + <artifactId>jaxx-tutorial</artifactId> + <version>2.0.2-SNAPSHOT</version> + <relativePath>../jaxx-tutorial</relativePath> + </parent> - <dependencies> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>jaxx-tutorial-helloworld2</artifactId> - <!-- librairie Jaxx --> - <!-- using properties from parent for tutorial deployment. Replace - ${project.groupId} by org.nuiton.jaxx and ${project.version} by the Jaxx - version if needed--> - <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>jaxx-runtime</artifactId> - <version>${project.version}</version> - </dependency> + <dependencies> - </dependencies> + <!-- librairie Jaxx --> + <dependency> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>jaxx-runtime</artifactId> + <version>${jaxx.version}</version> + </dependency> - <!-- ************************************************************* --> - <!-- *** Project Information ************************************* --> - <!-- ************************************************************* --> + </dependencies> - <name>${project.artifactId}</name> + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> - <organization> - <name>Nuiton</name> - <url>http://www.nuiton.org/</url> - </organization> + <name>JAXX :: Tutorial Hello world 2</name> - <!-- ************************************************************* --> - <!-- *** Build Settings ****************************************** --> - <!-- ************************************************************* --> + <organization> + <name>Nuiton</name> + <url>http://www.nuiton.org/</url> + </organization> - <build> - <plugins> + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> - <plugin> - <groupId>org.nuiton.jaxx</groupId> - <artifactId>maven-jaxx-plugin</artifactId> - <version>2.0.1</version> - <executions> - <execution> - <goals> - <goal>generate</goal> - </goals> - </execution> - </executions> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>2.3</version> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> + <properties> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>2.3</version> - <configuration> - <archive> - <manifest> - <addClasspath>true</addClasspath> - <classpathPrefix>./lib/</classpathPrefix> - <mainClass>org.nuiton.jaxx.tutorials.helloworld.helloworld</mainClass> + <!-- Jaxx version --> - </manifest> - </archive> - </configuration> + <jaxx.version>${project.version}</jaxx.version> - </plugin> + <!-- main class to run --> - <plugin> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <id>copy-dependencies</id> - <goals> - <goal>copy-dependencies</goal> - </goals> - <configuration> - <outputDirectory>target/lib</outputDirectory> - <silent>true</silent> - </configuration> - </execution> - </executions> - </plugin> + <main.class>org.nuiton.jaxx.tutorials.helloworld.helloworld</main.class> - </plugins> + <!-- compiler configuration --> - </build> + <maven.compiler.source>1.5</maven.compiler.source> + <maven.compiler.source>1.5</maven.compiler.source> - <!-- ************************************************************* --> - <!-- *** Build Environment ************************************** --> - <!-- ************************************************************* --> + <!-- to generate jnlp launcher while releasing jaxx --> + <jnlp.skip>false</jnlp.skip> + + </properties> + <build> - <repositories> + <pluginManagement> + <plugins> - <!-- nuiton releases repository, needed to get jaxx --> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <version>2.3</version> + <configuration> + <archive> + <manifest> + <useUniqueVersions>false</useUniqueVersions> + <addClasspath>true</addClasspath> + <classpathPrefix>./lib/</classpathPrefix> + <mainClass>${main.class}</mainClass> + </manifest> + </archive> + </configuration> + </plugin> - <repository> - <id>nuiton.release</id> - <name>NuitonReleaseRepository</name> - <url>http://maven.nuiton.org/release</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>warn</checksumPolicy> - </releases> - </repository> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3</version> + </plugin> - </repositories> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.1</version> + </plugin> - <pluginRepositories> + <plugin> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>maven-jaxx-plugin</artifactId> + <version>${jaxx.version}</version> + </plugin> - <!-- nuiton plugin releases repository, needed to get jaxx plugin --> + </plugins> - <pluginRepository> + </pluginManagement> - <id>nuiton.release</id> - <name>NuitonReleaseRepository</name> - <url>http://maven.nuiton.org/release</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>warn</checksumPolicy> - </releases> - </pluginRepository> + <plugins> - </pluginRepositories> + <plugin> + <groupId>org.nuiton.jaxx</groupId> + <artifactId>maven-jaxx-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>copy-dependencies</id> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <outputDirectory>target/lib</outputDirectory> + <silent>true</silent> + </configuration> + </execution> + </executions> + </plugin> + + </plugins> + + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <repositories> + + <!-- nuiton releases repository, needed to get jaxx --> + + <repository> + <id>nuiton.release</id> + <name>NuitonReleaseRepository</name> + <url>http://maven.nuiton.org/release</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + + </repositories> + + <pluginRepositories> + + <!-- nuiton plugin releases repository, needed to get jaxx plugin --> + + <pluginRepository> + + <id>nuiton.release</id> + <name>NuitonReleaseRepository</name> + <url>http://maven.nuiton.org/release</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </pluginRepository> + + </pluginRepositories> + </project> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-11 13:15:08 UTC (rev 1891) +++ trunk/pom.xml 2010-05-11 14:39:32 UTC (rev 1892) @@ -419,6 +419,12 @@ </dependencies> </plugin> + <plugin> + <groupId>org.nuiton.thirdparty</groupId> + <artifactId>webstart-maven-plugin</artifactId> + <version>1.0-alpha-2-cl_20100511</version> + </plugin> + </plugins> </pluginManagement> Modified: trunk/src/site/rst/tutos/helloworld2.rst =================================================================== --- trunk/src/site/rst/tutos/helloworld2.rst 2010-05-11 13:15:08 UTC (rev 1891) +++ trunk/src/site/rst/tutos/helloworld2.rst 2010-05-11 14:39:32 UTC (rev 1892) @@ -1,3 +1,27 @@ +.. - +.. * #%L +.. * JAXX +.. * +.. * $Id$ +.. * $HeadURL$ +.. * %% +.. * Copyright (C) 2008 - 2010 CodeLutin +.. * %% +.. * This program is free software: you can redistribute it and/or modify +.. * it under the terms of the GNU Lesser General Public License as +.. * published by the Free Software Foundation, either version 3 of the +.. * License, or (at your option) any later version. +.. * +.. * This program is distributed in the hope that it will be useful, +.. * but WITHOUT ANY WARRANTY; without even the implied warranty of +.. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.. * GNU General Lesser Public License for more details. +.. * +.. * You should have received a copy of the GNU General Lesser Public +.. * License along with this program. If not, see +.. * <http://www.gnu.org/licenses/lgpl-3.0.html>. +.. * #L% +.. - Hello World 2 =============
participants (1)
-
tchemit@users.nuiton.org