-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pom file template with proejct description (#51)
* Fix version logging for deploy
- Loading branch information
1 parent
ca63627
commit 0215119
Showing
3 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?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> | ||
<name>automigrate</name> | ||
<description>Database auto-migrations tool for Clojure. Define models as plain EDN and create schema migrations automatically.</description> | ||
<url>https://github.com/abogoyavlensky/automigrate</url> | ||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>https://opensource.org/license/mit/</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<name>Andrey Bogoyavlenskiy</name> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<url>https://github.com/abogoyavlensky/automigrate</url> | ||
<connection>scm:git:git://github.com/abogoyavlensky/automigrate.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]/abogoyavlensky/automigrate.git</developerConnection> | ||
</scm> | ||
</project> |