File: pom.xml

package info (click to toggle)
async-http-client 2.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 3,520 kB
  • sloc: java: 33,231; xml: 937; python: 30; sh: 7; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 986 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<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>

  <parent>
    <artifactId>async-http-client-extras-parent</artifactId>
    <groupId>org.asynchttpclient</groupId>
    <version>2.12.3</version>
  </parent>

  <artifactId>async-http-client-extras-typesafe-config</artifactId>
  <name>Asynchronous Http Client Typesafe Config Extras</name>
  <description>The Async Http Client Typesafe Config Extras.</description>

  <properties>
    <typesafeconfig.version>1.3.3</typesafeconfig.version>
    <javaModuleName>org.asynchttpclient.extras.typesafeconfig</javaModuleName>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.typesafe</groupId>
      <artifactId>config</artifactId>
      <version>${typesafeconfig.version}</version>
    </dependency>
  </dependencies>
</project>