Author: tchemit Date: 2008-04-18 19:39:40 +0000 (Fri, 18 Apr 2008) New Revision: 560 Added: trunk/lutinjaxx/runtime/ trunk/lutinjaxx/runtime/pom.xml trunk/lutinjaxx/runtime/src/ trunk/lutinjaxx/runtime/src/main/ trunk/lutinjaxx/runtime/src/main/java/ trunk/lutinjaxx/runtime/src/main/java/jaxx/ trunk/lutinjaxx/runtime/src/main/java/jaxx/runtime/ trunk/lutinjaxx/runtime/src/main/resources/ trunk/lutinjaxx/runtime/src/site/ trunk/lutinjaxx/runtime/src/site/site.xml trunk/lutinjaxx/runtime/src/test/ trunk/lutinjaxx/runtime/src/test/java/ trunk/lutinjaxx/runtime/src/test/java/jaxx/ trunk/lutinjaxx/runtime/src/test/resources/ Log: no default provider default module runtime instead with nothing to provide :) ) core module provides default handler for Object.class Added: trunk/lutinjaxx/runtime/pom.xml =================================================================== --- trunk/lutinjaxx/runtime/pom.xml (rev 0) +++ trunk/lutinjaxx/runtime/pom.xml 2008-04-18 19:39:40 UTC (rev 560) @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<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.codelutin.jaxx</groupId> + <artifactId>pom</artifactId> + <version>${current.version}</version> + </parent> + + <artifactId>runtime</artifactId> + <name>jaxx runtime</name> + + <packaging>jar</packaging> + <version>${current.version}</version> + <description>Jaxx lutin library runtime</description> + + <build> + <plugins> + <!--plugin> + <groupId>lutinplugin</groupId> + <artifactId>maven-i18n-plugin</artifactId> + <executions> + <execution> + <phase>process-classes</phase> + <goals> + <goal>parserJava</goal> + <goal>gen</goal> + </goals> + </execution> + </executions> + </plugin--> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>core</artifactId> + <scope>compile</scope> + </dependency> + <!-- pour acceder aux BeansInfos swing via Introspector --> + <dependency> + <groupId>com.sun</groupId> + <artifactId>dt</artifactId> + <!--version>1.6.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/dt.jar</systemPath--> + </dependency> + <!-- pour utiliser javaHelp --> + <dependency> + <groupId>javax.help</groupId> + <artifactId>javahelp</artifactId> + <!--version>2.0.02</version--> + </dependency> + </dependencies> +</project> Added: trunk/lutinjaxx/runtime/src/site/site.xml =================================================================== --- trunk/lutinjaxx/runtime/src/site/site.xml (rev 0) +++ trunk/lutinjaxx/runtime/src/site/site.xml 2008-04-18 19:39:40 UTC (rev 560) @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<project name="LutinUtil"> + + <skin> + <groupId>lutinlib</groupId> + <artifactId>lutin-site-skin</artifactId> + <version>0.1</version> + </skin> + + <bannerLeft> + <name>Lutin Buix Jaxx</name> + </bannerLeft> + + <bannerRight> + <src>http://www.codelutin.com/images/lutinorange-codelutin.png</src> + <href>http://www.codelutin.com</href> + </bannerRight> + + <poweredBy> + <logo href="http://maven.apache.org" name="Maven" img="images/logos/maven-feather.png"/> + <logo href="http://jrst.labs.libre-entreprise.org" name="JRst" img="images/jrst-logo.png"/> + <logo href="http://docutils.sourceforge.net/rst.html" name="ReStructuredText" img="images/restructuredtext-logo.png"/> + </poweredBy> + + <body> + <links> + <item name="Labs" href="http://labs.libre-entreprise.org/"/> + <item name="Code Lutin" href="http://www.codelutin.com/"/> + </links> + + <menu name="Utilisateur"> + <item name="Accueil" href="index.html"/> + <item href="http://lutinbuilder.labs.libre-entreprise.org/maven2/buix/jaxx" name="T�l�chargement"/> + </menu> + + <menu name="D�veloppeur"> + <item name="A faire" href="Todo.html"/> + </menu> + + ${reports} + + </body> +</project>