组织ID: |
de.objekt-kontor |
项目ID: |
config |
版本: |
1.1.0 |
最后修改时间: |
2019-11-01 02:56:20 |
包类型: |
jar |
标题: |
Configuration Framework |
描述: |
Provides annotation based mappings for values in property files to typesafe java classes |
相关URL: |
https://github.com/objekt-kontor-is/masterpom |
大小: |
26.18KB |
|
Maven引入代码: |
<dependency>
<groupId>de.objekt-kontor</groupId>
<artifactId>config</artifactId>
<version>1.1.0</version>
</dependency>
|
Gradle引入代码: |
de.objekt-kontor:config:1.1.0
|
下载Jar包: |
|
POM文件内容: |
<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.1.0</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>2</version>
</parent>
<dependencies>
<!-- Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</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>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/de.objekt-kontor/config/pom.properties
META-INF/maven/de.objekt-kontor/config/pom.xml
de.objektkontor.config.AbstractBackend.class
de.objektkontor.config.Backend.class
de.objektkontor.config.ConfigLoader.class
de.objektkontor.config.Configuration$1.class
de.objektkontor.config.Configuration$Bundle.class
de.objektkontor.config.Configuration$GeneralizeKeys.class
de.objektkontor.config.Configuration.class
de.objektkontor.config.DuplicateConfigIdException.class
de.objektkontor.config.ValueFormatException.class
de.objektkontor.config.ValueParser.class
de.objektkontor.config.annotation.ConfigIdentifier.class
de.objektkontor.config.annotation.ConfigParameter.class
de.objektkontor.config.common.DBConfig.class
de.objektkontor.config.valueparser.AbtrsactArrayParser.class
de.objektkontor.config.valueparser.BooleanValueParser.class
de.objektkontor.config.valueparser.DateValueParser.class
de.objektkontor.config.valueparser.EnumValueParser.class
de.objektkontor.config.valueparser.IntegerValueParser.class
de.objektkontor.config.valueparser.LongValueParser.class
de.objektkontor.config.valueparser.StringValueParser.class
|
依赖Jar: |
|