toc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.orbisgis</groupId>
<artifactId>toc</artifactId>
<version>5.0.1</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>toc</artifactId>
<name>toc</name>
<description>Table of content of OrbisGIS</description>
<parent>
<artifactId>orbisgis</artifactId>
<groupId>org.orbisgis</groupId>
<version>5.0.1</version>
<relativePath>../..</relativePath>
</parent>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>com.carrotgarden.maven</groupId>
<artifactId>carrot-maven-scr-plugin</artifactId>
<version>3.0.3</version>
<configuration>
<enableDebugLogging>false</enableDebugLogging>
<enableErrorLogging>true</enableErrorLogging>
<enableInfoLogging>true</enableInfoLogging>
</configuration>
<executions>
<execution>
<goals>
<goal>clean</goal>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>org.orbisgis.view.toc.translation.*</Private-Package>
<Public-Package>org.orbisgis.view.toc.*</Public-Package>
<Service-Component>OSGI-INF/service-component/*.xml</Service-Component>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>com.googlecode.gettext-commons</groupId>
<version>1.2.4</version>
<executions>
<execution>
<id>convert-po-class</id>
<phase>compile</phase>
<goals>
<goal>dist</goal>
</goals>
</execution>
</executions>
<artifactId>gettext-maven-plugin</artifactId>
<configuration>
<poDirectory>src/main/resources/org/orbisgis/view/toc/</poDirectory>
<targetBundle>org.orbisgis.view.toc.translation.Messages</targetBundle>
<keywords>-ktr</keywords>
<outputFormat>properties</outputFormat>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${org.osgi.compendium-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${sl4j-version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.enterprise</artifactId>
<version>5.0.0</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>orbisgis-view-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>orbisgis-view</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>orbisgis-view-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>legend</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>