Skip to content

Commit

Permalink
v1.1.0 - Add support for strike
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilherme I F L Weizenmann committed Dec 7, 2016
1 parent ff59610 commit a8f77ea
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 5 deletions.
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,58 @@ pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
settings.xml

# Created by https://www.gitignore.io/api/intellij

### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff:
.idea/workspace.xml
.idea/tasks.xml

# Sensitive or high-churn files:
.idea/dataSources/
.idea/dataSources.ids
.idea/dataSources.xml
.idea/dataSources.local.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml

# Gradle:
.idea/gradle.xml
.idea/libraries

# Mongo Explorer plugin:
.idea/mongoSettings.xml

## File-based project format:
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

### Intellij Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721

# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
33 changes: 28 additions & 5 deletions pom.xml
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>
Expand All @@ -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>
Expand Down

0 comments on commit a8f77ea

Please sign in to comment.