Kayak-logging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.andy2003</groupId>
<artifactId>Kayak-logging</artifactId>
<version>1.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>
<parent>
<artifactId>Kayak</artifactId>
<groupId>com.github.andy2003</groupId>
<version>1.0</version>
</parent>
<artifactId>Kayak-logging</artifactId>
<version>1.0</version>
<packaging>nbm</packaging>
<name>Kayak-logging NetBeans Module</name>
<repositories>
<!-- this is a remote repository hosting the netbeans api artifacts.
the versions of the artifacts are netbeans IDE release based, eg. RELEASE65.
You might want to use your own repository. To create one, use the nbm:populate-repository goal.
-->
<repository>
<id>netbeans</id>
<name>repository hosting netbeans.org api artifacts</name>
<url>http://bits.netbeans.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util</artifactId>
<version>RELEASE80</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>Kayak-core</artifactId>
<version>1.0</version>
<type>nbm</type>
</dependency>
<dependency>
<artifactId>org-openide-util-lookup</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE71</version>
</dependency>
<dependency>
<artifactId>org-openide-windows</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<artifactId>org-openide-awt</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<artifactId>org-openide-nodes</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<artifactId>org-openide-explorer</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<artifactId>org-openide-filesystems</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>Kayak-ui</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-modules-settings</artifactId>
<version>RELEASE80</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-modules-options-api</artifactId>
<version>RELEASE80</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-loaders</artifactId>
<version>RELEASE80</version>
</dependency>
<dependency>
<artifactId>org-netbeans-api-progress</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<artifactId>org-openide-modules</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>RELEASE80</version>
</dependency>
<dependency>
<groupId>org.tango-project</groupId>
<artifactId>tango-icon-theme</artifactId>
<version>0.8.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>3.13</version>
<extensions>true</extensions>
</plugin>
<plugin>
<!-- netbeans modules in 6.9+ are 1.6 compatible -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<!-- to have the jar plugin pickup the nbm generated manifest -->
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
</plugin>
</plugins>
</build>
<description>Kayak module for generation and replay of log files.</description>
</project>