config
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.objekt-kontor</groupId>
<artifactId>config</artifactId>
<version>1.4.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>config</artifactId> <version>1.4.1</version> <packaging>bundle</packaging> <name>Configuration Framework</name> <description>Provides annotation based mappings for values in property files to typesafe java classes</description> <url>https://github.com/objekt-kontor-is/masterpom</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <organization> <name>Objekt-Kontor IS GmbH & Co KG</name> <url>http://www.objekt-kontor.de</url> </organization> <developers> <developer> <name>Eugen Borth</name> <email>eugen.borth@objekt-kontor.de</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:objekt-kontor-is/config.git</connection> <developerConnection>scm:git:git@github.com:objekt-kontor-is/config.git</developerConnection> <url>git@github.com:objekt-kontor-is/config.git</url> </scm> <parent> <groupId>de.objekt-kontor</groupId> <artifactId>master-pom</artifactId> <version>5</version> </parent> <dependencies> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package> de.objektkontor.config, de.objektkontor.config.* </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>