Skip to content

Commit

Permalink
Init pom xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitem committed Jul 27, 2020
1 parent 10097a3 commit 73e739e
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# BiDirectionalMapper

LOGO:
WHY:

## Install

TODO:

## Usage

TODO:

## Custom

TODO:

### Develop

```
# run repl
Expand Down
35 changes: 35 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>${GROUP_ID}</groupId>
<artifactId>${ARTIFACT_ID}</artifactId>
<version>LATEST</version>
<name>${PROJECT_NAME}</name>
<description>A description</description>
<url>https://github.com/$USER/$PROJECT</url>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Aitem</name>
</developer>
</developers>
<scm>
<url>https://github.com/$USER/$PROJECT</url>
<connection>scm:git:git://github.com/$USER/$PROJECT.git</connection>
<developerConnection>scm:git:ssh://[email protected]/$USER/$PROJECT.git</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.1</version>
</dependency>
</dependencies>
<sourceDirectory>src</sourceDirectory>
</project>

0 comments on commit 73e739e

Please sign in to comment.