zkgridster
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.zkoss</groupId> <artifactId>zkgridster</artifactId> <version>0.2.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>org.zkoss</groupId> <artifactId>zkgridster</artifactId> <version>0.2.1</version> <name>ZK Gridster</name> <description>ZK wrapper for gridster.js</description> <url>https://github.com/connollyst/zkgridster</url> <scm> <url>https://github.com/connollyst/zkgridster</url> <connection>scm:git:git://github.com/connollyst/zkgridster.git</connection> <developerConnection>scm:git:git@github.com:connollyst/zkgridster.git</developerConnection> <tag>zkgridster-0.2.1</tag> </scm> <developers> <developer> <id>sean</id> <name>Sean Connolly</name> <email>connolly.st@gmail.com</email> <url>http://sean.connolly.rocks</url> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url> https://oss.sonatype.org/content/repositories/snapshots </url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url> https://oss.sonatype.org/service/local/staging/deploy/maven2 </url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <zk.version>7.0.3</zk.version> <servlet.api.version>2.4</servlet.api.version> <maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format> <packname>-${project.version}-FL-${maven.build.timestamp}</packname> </properties> <dependencies> <dependency> <groupId>org.zkoss.zk</groupId> <artifactId>zul</artifactId> <version>${zk.version}</version> </dependency> <dependency> <groupId>org.zkoss.zk</groupId> <artifactId>zkbind</artifactId> <version>${zk.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${servlet.api.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <testOutputDirectory> ${project.build.directory}/classes </testOutputDirectory> <plugins> <!-- Compile java --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <!-- Build jar excludes test class --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <excludes> <exclude>test/**</exclude> </excludes> </configuration> </plugin> <!-- Build javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <phase>package</phase> <configuration> <encoding>UTF-8</encoding> <charset>UTF-8</charset> </configuration> <goals> <goal>javadoc</goal> </goals> </execution> </executions> </plugin> <!-- Release to Maven Central with passphrase --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> </plugin> <!-- Run test webapp with Jetty --> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.10</version> <configuration> <scanIntervalSeconds>5</scanIntervalSeconds> <stopKey>foo</stopKey> <stopPort>9999</stopPort> <webAppSourceDirectory> ${basedir}/src/test/webapp </webAppSourceDirectory> <classesDirectory> ${basedir}/target/classes </classesDirectory> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- Generate PGP Signatures --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>