zk-archetype-component
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.zkoss</groupId> <artifactId>zk-archetype-component</artifactId> <version>9.6.0</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>zk-archetype-component</artifactId> <version>9.6.0</version> <packaging>maven-archetype</packaging> <name>zk-archetype-component</name> <url>https://www.zkoss.org</url> <description>An archetype that generates a starter ZK component project</description> <scm> <url>http://gitlab.potix.com:3000/dennischen/maven-archetype.git</url> <connection>scm:git:http://gitlab.potix.com:3000/dennischen/maven-archetype.git</connection> </scm> <licenses> <license> <name>GNU General Public License, Version 3.0</name> <url>https://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>zkteam</id> <name>ZK Team</name> <email>info@zkoss.org</email> <url>https://www.zkoss.org</url> <organization>Potix</organization> <organizationUrl>https://www.zkoss.org</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>8</timezone> <properties> <picUrl>https://www.zkoss.org</picUrl> </properties> </developer> </developers> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>package</phase> <configuration> <target> <jar destfile="${project.build.directory}/${project.artifactId}-${project.version}-sources.jar"/> <jar destfile="${project.build.directory}/${project.artifactId}-${project.version}-javadoc.jar"/> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>bundle</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/bundle.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>