2021-04-19 11:34:19 +00:00
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
2018-12-21 08:44:48 +00:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.typesafe</groupId>
|
|
|
|
<artifactId>config</artifactId>
|
|
|
|
<packaging>bundle</packaging>
|
2021-04-20 05:32:12 +00:00
|
|
|
<description>configuration library for JVM languages using HOCON files</description>
|
|
|
|
<url>https://github.com/lightbend/config</url>
|
|
|
|
<version>1.4.1</version>
|
2018-12-21 08:44:48 +00:00
|
|
|
<licenses>
|
|
|
|
<license>
|
2021-04-20 05:32:12 +00:00
|
|
|
<name>Apache-2.0</name>
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
2018-12-21 08:44:48 +00:00
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2021-04-20 05:32:12 +00:00
|
|
|
<name>config</name>
|
|
|
|
<organization>
|
|
|
|
<name>com.typesafe</name>
|
|
|
|
<url>https://github.com/lightbend/config</url>
|
|
|
|
</organization>
|
2018-12-21 08:44:48 +00:00
|
|
|
<scm>
|
2021-04-20 05:32:12 +00:00
|
|
|
<url>https://github.com/lightbend/config</url>
|
|
|
|
<connection>scm:git@github.com:lightbend/config.git</connection>
|
2018-12-21 08:44:48 +00:00
|
|
|
</scm>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>havocp</id>
|
|
|
|
<name>Havoc Pennington</name>
|
2021-04-20 05:32:12 +00:00
|
|
|
<email>@havocp</email>
|
2018-12-21 08:44:48 +00:00
|
|
|
<url>http://ometer.com/</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe</groupId>
|
2021-04-20 05:32:12 +00:00
|
|
|
<artifactId>config-test-lib_2.12</artifactId>
|
|
|
|
<version>1.4.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>org.jacoco.agent</artifactId>
|
|
|
|
<version>0.7.9</version>
|
2018-12-21 08:44:48 +00:00
|
|
|
<scope>test</scope>
|
2021-04-20 05:32:12 +00:00
|
|
|
<classifier>runtime</classifier>
|
2018-12-21 08:44:48 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.liftweb</groupId>
|
2021-04-20 05:32:12 +00:00
|
|
|
<artifactId>lift-json_2.12</artifactId>
|
|
|
|
<version>3.3.0</version>
|
2018-12-21 08:44:48 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.novocode</groupId>
|
|
|
|
<artifactId>junit-interface</artifactId>
|
2021-04-19 11:18:58 +00:00
|
|
|
<version>0.11</version>
|
2018-12-21 08:44:48 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|