-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guilherme I F L Weizenmann
committed
Dec 7, 2016
1 parent
ff59610
commit a8f77ea
Showing
2 changed files
with
82 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.overzealous</groupId> | ||
<artifactId>remark</artifactId> | ||
<version>1.0.0</version> | ||
<version>1.1.0</version> | ||
<inceptionYear>2011</inceptionYear> | ||
<name>Remark</name> | ||
<description>Remark is a library for taking (X)HTML input and outputting clean Markdown, Markdown Extra, or MultiMarkdown compatible text.</description> | ||
<description>Remark is a library for taking (X)HTML input and outputting clean Markdown, Markdown Extra, or | ||
MultiMarkdown compatible text. | ||
</description> | ||
<url>https://bitbucket.org/OverZealous/remark</url> | ||
<licenses> | ||
<license> | ||
|
@@ -31,10 +34,30 @@ | |
<organization>ITQuasar</organization> | ||
<organizationUrl>http://itquasar.com</organizationUrl> | ||
<roles> | ||
<role>Developer (migration to maven)</role> | ||
<role>Developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
<contributors> | ||
<contributor> | ||
<name>Alex Boyko</name> | ||
<properties> | ||
<github>https://github.com/BoykoAlex</github> | ||
</properties> | ||
</contributor> | ||
</contributors> | ||
<scm> | ||
<connection>scm:git:[email protected]:giflw/remark-java.git</connection> | ||
<developerConnection>scm:git:[email protected]:giflw/remark-java.git</developerConnection> | ||
<url>[email protected]:giflw/remark-java.git</url> | ||
</scm> | ||
<distributionManagement> | ||
<repository> | ||
<id>bintray-giflw-maven</id> | ||
<name>giflw-maven</name> | ||
<url>https://api.bintray.com/maven/giflw/maven/remark-java/;publish=1</url> | ||
</repository> | ||
</distributionManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
|