Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ target
velocity.log
.project
.classpath
*.ipr
*.iml
*.iws

20 changes: 20 additions & 0 deletions wicket-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,26 @@
<licenseLocation>${basedir}/../../../common/lib/clover.license</licenseLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.apache.wicket:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
51 changes: 33 additions & 18 deletions wicket-request/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,37 @@
limitations under the License.
-->
<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>
<parent>
<artifactId>wicket-parent</artifactId>
<groupId>org.apache.wicket</groupId>
<version>1.5-SNAPSHOT</version>
</parent>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-request</artifactId>
<version>1.5-SNAPSHOT</version>
<name>Wicket Request</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-util</artifactId>
</dependency>
</dependencies>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>wicket-parent</artifactId>
<groupId>org.apache.wicket</groupId>
<version>1.5-SNAPSHOT</version>
</parent>

<groupId>org.apache.wicket</groupId>
<artifactId>wicket-request</artifactId>
<version>1.5-SNAPSHOT</version>

<name>Wicket Request</name>

<dependencies>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-util</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
53 changes: 34 additions & 19 deletions wicket-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,38 @@
limitations under the License.
-->
<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>
<parent>
<artifactId>wicket-parent</artifactId>
<groupId>org.apache.wicket</groupId>
<version>1.5-SNAPSHOT</version>
</parent>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-util</artifactId>
<version>1.5-SNAPSHOT</version>
<name>Wicket Util</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>wicket-parent</artifactId>
<groupId>org.apache.wicket</groupId>
<version>1.5-SNAPSHOT</version>
</parent>

<groupId>org.apache.wicket</groupId>
<artifactId>wicket-util</artifactId>
<version>1.5-SNAPSHOT</version>

<name>Wicket Util</name>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>