wicket-chartist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.mmielimonka</groupId>
<artifactId>wicket-chartist</artifactId>
<version>0.0.1</version>
</dependency><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>
<artifactId>wicket-chartist</artifactId>
<parent>
<groupId>com.github.mmielimonka</groupId>
<artifactId>wicket-chartist-parent</artifactId>
<version>0.0.1</version>
<relativePath>../wicket-chartist-parent</relativePath>
</parent>
<name>${project.groupId}:${project.artifactId}</name>
<description>chartist.js wrapper for apache wicket framework</description>
<properties>
<jackson-core-asl.version>1.9.2</jackson-core-asl.version>
<jackson-mapper-asl.version>1.9.2</jackson-mapper-asl.version>
<!-- PLUGINS -->
<maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
<!-- JDK -->
<jdk.version>1.6</jdk.version>
<!-- WICKET -->
<wicket.version>1.5.0</wicket.version>
<!-- LOG4J -->
<log4j.version>2.2</log4j.version>
</properties>
<scm>
<url>git@github.com:mmielimonka/wicket-chartist.git</url>
<connection>scm:git:git@github.com:mmielimonka/wicket-chartist.git</connection>
<developerConnection>scm:git:git@github.com:mmielimonka/wicket-chartist.git</developerConnection>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Michael Mielimonka</name>
<email>mielimonkadevelop@gmail.com</email>
</developer>
</developers>
<dependencies>
<!-- WICKET DEPENDENCIES -->
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>${wicket.version}</version>
</dependency>
<!-- LOG4J DEPENDENCIES -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson-mapper-asl.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>${jackson-core-asl.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jasig.maven</groupId>
<artifactId>sass-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<id>package</id>
<phase>generate-sources</phase>
<goals>
<goal>update-stylesheets</goal>
</goals>
</execution>
</executions>
<configuration>
<resources>
<resource>
<source>
<directory>${basedir}/src/main/resources/org/wicketchartist/sass</directory>
</source>
<destination>${basedir}/src/main/resources/org/wicketchartist/css</destination>
</resource>
</resources>
<useCompass>true</useCompass>
</configuration>
</plugin>
<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>
<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>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.jasig.maven
</groupId>
<artifactId>
sass-maven-plugin
</artifactId>
<versionRange>
[1.1.1,)
</versionRange>
<goals>
<goal>
update-stylesheets
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>