Skip to content

Commit 9eee06d

Browse files
committed
Add pom.xml template
1 parent 6160e0b commit 9eee06d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@
44
.lsp/
55
target/
66
.nrepl-port
7-
pom.xml

template/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<name>cloudformation-templating</name>
5+
<description>A library for creating CloudFormation templates.</description>
6+
<url>https://github.com/staticweb-io/cloudformation-templating</url>
7+
<licenses>
8+
<license>
9+
<name>MIT License</name>
10+
<url>https://github.com/staticweb-io/cloudformation-templating/master/LICENSE</url>
11+
</license>
12+
</licenses>
13+
<developers>
14+
<developer>
15+
<name>John Shaffer</name>
16+
</developer>
17+
</developers>
18+
<scm>
19+
<url>https://github.com/staticweb-io/cloudformation-templating</url>
20+
<connection>scm:git:git://github.com/staticweb-io/cloudformation-templating.git</connection>
21+
<developerConnection>scm:git:ssh://[email protected]/staticweb-io/cloudformation-templating.git</developerConnection>
22+
</scm>
23+
</project>

0 commit comments

Comments
 (0)