travis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cibuddy</groupId>
<artifactId>travis</artifactId>
<version>1.0.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>
<artifactId>travis</artifactId>
<packaging>bundle</packaging>
<name>${application.domain}.${project.artifactId}</name>
<description>Travis-CI build server status check bundle</description>
<parent>
<groupId>com.cibuddy</groupId>
<artifactId>servers</artifactId>
<version>1.0.0</version>
</parent>
<properties>
<!-- osgi directives used in the maven-bundle-plugin, defined in the root pom -->
<bundle.symbolicNameDirective>singleton:=true</bundle.symbolicNameDirective>
<bundle.symbolicName>${project.name};${bundle.symbolicNameDirective}</bundle.symbolicName>
<bundle.namespace>${project.name}</bundle.namespace>
<osgi.bundle.activator>${project.name}.Activator</osgi.bundle.activator>
<osgi.private.pkg>${project.name}*</osgi.private.pkg>
<osgi.import.pkg>
org.osgi.framework;version=[1.3.0','2.0.0),
org.apache.http*;version=[4','5),
org.apache.felix.fileinstall;version=[3.1','3.3),
*
</osgi.import.pkg>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 3rd party dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.fileinstall</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-osgi</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<!-- test dependencies (scope defined in parent pom) -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.pojosr</groupId>
<artifactId>de.kalpatec.pojosr.framework</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
</dependencies>
<build>
<!-- plugins used -->
<plugins>
<!-- compile code against java 1.6 -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<!-- attach obsolete artifacts for sonatypes oss (also for 'package' phase) -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<includePackageNames>com.cibuddy.travis</includePackageNames>
<links>
<link>http://docs.oracle.com/javase/7/docs/api/</link>
</links>
<version>true</version>
<show>protected</show>
</configuration>
</plugin>
<!-- enable it being an osgi bundle -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>