application
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.andy2003</groupId> <artifactId>application</artifactId> <version>1.0</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> <parent> <groupId>com.github.andy2003</groupId> <artifactId>Kayak</artifactId> <version>1.0</version> </parent> <artifactId>application</artifactId> <version>1.0</version> <packaging>nbm-application</packaging> <name>Kayak - NetBeans Platform based application</name> <dependencies> <dependency> <groupId>org.netbeans.cluster</groupId> <artifactId>platform</artifactId> <version>RELEASE80</version> <type>pom</type> </dependency> <dependency> <groupId>com.github.andy2003</groupId> <artifactId>branding</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>com.github.andy2003</groupId> <artifactId>Kayak-ui</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>Kayak-logging</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>Kayak-kcd</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>Kayak-mapview</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>nbm-maven-plugin</artifactId> <version>3.13</version> </plugin> </plugins> </build> <profiles> <profile> <id>deployment</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>nbm-maven-plugin</artifactId> <executions> <execution> <id>updatesite</id> <phase>package</phase> <goals> <goal>autoupdate</goal> </goals> <configuration> <!--distBase>central::default::http://repo1.maven.org/maven2</distBase--> </configuration> </execution> <execution> <id>webstart</id> <phase>package</phase> <goals> <goal>webstart-app</goal> </goals> <configuration> <codebase>${project.build.directory}/webstart/${brandingToken}</codebase> </configuration> </execution> </executions> <version>3.6</version> </plugin> </plugins> </build> </profile> </profiles> <properties></properties> </project>