wicket-menu-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cooldatasoft</groupId>
<artifactId>wicket-menu-parent</artifactId>
<version>7.0.0.4</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<groupId>com.cooldatasoft</groupId>
<artifactId>wicket-menu-parent</artifactId>
<version>7.0.0.4</version>
<packaging>pom</packaging>
<name>Wicket Menu Parent</name>
<description>Wicket Menu Parent</description>
<url>https://github.com/cooldatasoft/wicket-menu</url>
<properties>
<wicket.version>7.0.0</wicket.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version>
<slf4j.version>1.7.10</slf4j.version>
<junit.version>4.12</junit.version>
<maven.jar.includes>**/*.*</maven.jar.includes>
<lombok.version>1.16.0</lombok.version>
</properties>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/cooldatasoft/wicket-menu/issues</url>
</issueManagement>
<developers>
<developer>
<id>fmucar</id>
<name>Fatih Mehmet UCAR</name>
<email>fmucar@cooldatasoft.com</email>
<timezone>0</timezone>
<organization>Cooldatasoft</organization>
<organizationUrl>http://www.cooldatasoft.com</organizationUrl>
</developer>
</developers>
<licenses>
<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>
<scm>
<connection>scm:git:ssh://git@github.com/cooldatasoft/wicket-menu.git</connection>
<developerConnection>scm:git:ssh://git@github.com/cooldatasoft/wicket-menu.git</developerConnection>
<url>http://github.com/cooldatasoft/wicket-menu</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.cooldatasoft</groupId>
<artifactId>wicket-menu</artifactId>
<version>${project.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>${wicket.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>${basedir}/src/main/java</directory>
<filtering>true</filtering>
</resource>
</resources>
<!-- Include sources in the final package -->
<!-- <resources> <resource> <directory>${basedir}/src/main/resources</directory>
</resource> <resource> <directory>${basedir}/src/main/java</directory> </resource>
</resources> -->
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- Attach source for deployed artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Attach javadocs to deployed artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>wicket-menu</module>
<module>wicket-menu-demo</module>
</modules>
</project>