config-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>config-core</artifactId>
<version>0.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- vi:ts=2:sw=2:expandtab: -->
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>config-root</artifactId>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>config-core</artifactId>
<name>Tools4j Config Core</name>
<version>${version.tools4j.config}</version>
<description>Core of Tools4j Config</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.6</version>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>support-jse</artifactId>
</dependency>
<dependency>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>config-api-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>config-api-admin</artifactId>
</dependency>
<dependency>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>config-api-provider</artifactId>
</dependency>
<dependency>
<groupId>org.deephacks.tools4j</groupId>
<artifactId>config-tck</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.guava-osgi</groupId>
<artifactId>guava-osgi</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.1.0.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>