Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>nl.cloudfarming.client</groupId>
<artifactId>twitter</artifactId>
<version>1.0.18</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>parent-extra</artifactId>
<groupId>nl.cloudfarming.client</groupId>
<version>1.0.18</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>nl.cloudfarming.client</groupId>
<artifactId>twitter</artifactId>
<packaging>nbm</packaging>
<name>messaging-twitter</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-api-annotations-common</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-modules</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util</artifactId>
</dependency>
<dependency>
<groupId>nl.cloudfarming.eventbus</groupId>
<artifactId>cloudfarming-eventbus</artifactId>
</dependency>
<dependency>
<artifactId>lib-common</artifactId>
<groupId>nl.cloudfarming.client</groupId>
</dependency>
<dependency>
<artifactId>org-openide-windows</artifactId>
<groupId>org.netbeans.api</groupId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util-lookup</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-modules-options-api</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-awt</artifactId>
</dependency>
<dependency>
<artifactId>miglayout</artifactId>
<groupId>com.miglayout</groupId>
</dependency>
<dependency>
<artifactId>swingx</artifactId>
<groupId>org.swinglabs</groupId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>logging</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>message-api</artifactId>
<version>1.0.17</version>
</dependency>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>2.2.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<!-- NetBeans 6.9+ requires JDK 6 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<!-- to have the jar plugin pickup the nbm generated manifest -->
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
</plugin>
</plugins>
</build>
<description>Twitter messaging implementation, retrieves all AgroSense tweets and displays them as messages</description>
</project>