Skip to content

Commit

Permalink
networknt#313 Add for acme-client module
Browse files Browse the repository at this point in the history
  • Loading branch information
shabeebrp committed Jun 29, 2019
1 parent ce1a325 commit ded2ec7
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 0 deletions.
40 changes: 40 additions & 0 deletions acme-client/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!--
~ Copyright (c) 2016 Network New Technologies Inc.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<groupId>com.networknt</groupId>
<artifactId>light-4j</artifactId>
<version>2.0.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

<artifactId>acme-client</artifactId>
<packaging>jar</packaging>
<description>A module to support atuomated TLS certificate management</description>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Empty file.
Empty file.
Empty file.
Empty file.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
<module>monad-result</module>
<module>logger-config</module>
<module>jaeger-tracing</module>
<module>acme-client</module>
</modules>

<dependencyManagement>
Expand Down Expand Up @@ -379,6 +380,11 @@
<artifactId>jaeger-tracing</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>acme-client</artifactId>
<version>${project.version}</version>
</dependency>
<!-- External dependencies -->

<dependency>
Expand Down

0 comments on commit ded2ec7

Please sign in to comment.