* I changed the license to ASL 2.0.
* I used org.wicketstuff.jquery as groupId for wicketstuff-jquery and
wicketstuff-jquery-examples (previously demo, renamed to follow existing
projects)
* I create a org.wicketstuff:wicketstuff-parent project from where the 2 others
project inherit
* I attach the 3 pom.xml for approbation before importing projects
Is it OK ?
/David
Martijn Dashorst wrote:
On 8/16/07, David Bernard <[EMAIL PROTECTED]> wrote:
my sf.net id : dwayneb
You're in.
license of jquery and other js plugins are dual GPL/MIT, ASL, or LGPL so I
don't think there is a possible inclusion into Wicket but for my part I'll
change to ASL.
jquery is dual licensed, and the MIT license is compatible with the
ASL. So I don't see a problem with that (MIT/X11 is a category A
license, i.e. source level compatible [1]).
You suggest to use org.wicketstuff.something for groupId but the project I saw
(dojo, animator) use org.wicketstuff is it normal ?
I don't mind using org.wicketstuff. It is just that if you make more
subprojects, it is easier to detect them in the repo. Basically it is
just a suggestion. If you want to make it org.jquery.wicket, I would
ask why and possibly to reconsider, but not object.
Martijn
[1] http://people.apache.org/~cliffs/3party.html
<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>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-parent</artifactId>
<packaging>pom</packaging>
<version>1</version>
<name>${project.artifactId}</name>
<url>http://wicketstuff.org/</url>
<inceptionYear>2007</inceptionYear>
<licenses>
<!-- default license (to override if needed) -->
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>jira</system>
<url>http://wicketstuff.org/jira</url>
</issueManagement>
<organization>
<name>Wicket Stuff</name>
<url>http://wicketuff.org/</url>
</organization>
<scm>
<connection>scm:svn:http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk</connection>
<developerConnection>scm:svn:https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk</developerConnection>
<url>https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk</url>
</scm>
<!-- same as Wicket -->
<mailingLists>
<mailingList>
<name>Wicket Announcements List</name>
<post>[EMAIL PROTECTED]</post>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<archive>http://www.nabble.com/Wicket---Announce-f13975.html</archive>
</mailingList>
<mailingList>
<name>Wicket User List</name>
<post>[EMAIL PROTECTED]</post>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<archive>http://www.nabble.com/Wicket---User-f13976.html</archive>
</mailingList>
<mailingList>
<name>Wicket Development List</name>
<post>dev@wicket.apache.org</post>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<archive>http://www.nabble.com/Wicket---Dev-f13977.html</archive>
</mailingList>
<mailingList>
<name>Wicket commit List</name>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<archive>http://mail-archives.apache.org/mod_mbox/wicket-commits/</archive>
</mailingList>
</mailingLists>
<properties>
<java.src.version>1.5</java.src.version>
<wicket.version>1.2.6</wicket.version>
<slf4j.version>1.4.2</slf4j.version>
<runtime.log>target/velocity.log</runtime.log>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket</artifactId>
<version>${wicket.version}</version>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-extensions</artifactId>
<version>${wicket.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl104-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.1</version>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>org.wicketstuff</id>
<name>Wicket Stuff Repository</name>
<url>http://wicketstuff.org/maven/repository</url>
</repository>
</repositories>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
<resource>
<directory>${basedir}/src/main/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.src.version}</source>
<target>${java.src.version}</target>
<optimise>true</optimise>
<debug>true</debug>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<!--version>2.1</version-->
<configuration>
<archive>
<index>true</index>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries></manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<!--version>2.2</version-->
<configuration>
<minmemory>128m</minmemory>
<maxmemory>256m</maxmemory>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<!--version>2.0-beta-5</version-->
</plugin>
<plugin>
<inherited>true</inherited>
<artifactId>maven-source-plugin</artifactId>
<!--version>2.0.3</version-->
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<!--version>1.0-alpha-5</version-->
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<resourceBundles>
<resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
<resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle>
</resourceBundles>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<!--
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>${basedir}/src/assembly/project.xml</descriptor>
</descriptors>
</configuration>
</plugin>
-->
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<additionalProjectnatures>
<projectnature>wicketbench.wicketnature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>wicketbench.associatedMarkupAuditor</buildcommand>
</additionalBuildcommands>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
<tag>TODO</tag>
<tag>FIXME</tag>
<tag>@todo</tag>
<tag>@deprecated</tag>
</tags>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<outputName>test-report</outputName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
</configuration>
</plugin>
<!--
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
-->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>${java.src.version}</targetJdk>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>pmd</report>
<report>cpd</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<version>2.0-beta-2</version>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
<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.wicketstuff</groupId>
<artifactId>wicketstuff-parent</artifactId>
<version>1</version>
</parent>
<groupId>org.wicketstuff.jquery</groupId>
<artifactId>wicketstuff-jquery</artifactId>
<packaging>jar</packaging>
<version>0.1</version>
<properties>
<wicket.version>1.3.0-beta2</wicket.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</project>
<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.wicketstuff</groupId>
<artifactId>wicketstuff-parent</artifactId>
<version>1</version>
</parent>
<groupId>org.wicketstuff.jquery</groupId>
<artifactId>wicketstuff-jquery-examples</artifactId>
<packaging>war</packaging>
<version>0.1</version>
<properties>
<wicket.version>1.3.0-beta2</wicket.version>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wicketstuff-jquery</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>0.9.7</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl104-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket</artifactId>
<version>${wicket.version}</version>
</dependency>
<!--
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-extensions</artifactId>
<version>${wicket.version}</version>
</dependency>
-->
<!-- Test -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.1</version>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<!--version>6.1.4</version-->
<configuration>
<contextPath>/</contextPath>
<scanIntervalSeconds>60</scanIntervalSeconds>
<webAppSourceDirectory>src/main/webapp</webAppSourceDirectory>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8080</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</plugin>
</plugins>
</build>
</project>