Skip to content

Commit

Permalink
publish 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Fatih Ercik committed Mar 3, 2020
1 parent 8466bc2 commit 9d351aa
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Ignore Gradle project-specific cache directory
.gradle

# Ignore Gradle build output directory
build
/dsm/.idea/
/.idea/

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ Installation
<dependency>
<groupId>com.github.mfatihercik</groupId>
<artifactId>dsm</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
**Gradle**

.. code-block:: xml
compile ('com.github.mfatihercik:dsm:1.0.3')
compile ('com.github.mfatihercik:dsm:1.0.4')
=============================================================
`Documentation <https://mfatihercik.github.io/dsm/>`_.
Expand Down
4 changes: 2 additions & 2 deletions docs/build/html/_sources/quick-start-guide.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Installation
<dependency>
<groupId>com.github.mfatihercik</groupId>
<artifactId>dsm</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
.. tab-container:: tab2
Expand All @@ -199,7 +199,7 @@ Installation

.. code-block:: xml
compile ('com.github.mfatihercik:dsm:1.0.3')
compile ('com.github.mfatihercik:dsm:1.0.4')
Expand Down
4 changes: 2 additions & 2 deletions docs/build/html/quick-start-guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,15 +329,15 @@ <h1>Installation<a class="headerlink" href="#installation" title="Permalink to t
<div class="highlight-xml"><div class="highlight"><pre><span></span><span class="nt">&lt;dependency&gt;</span>
<span class="nt">&lt;groupId&gt;</span>com.github.mfatihercik<span class="nt">&lt;/groupId&gt;</span>
<span class="nt">&lt;artifactId&gt;</span>dsm<span class="nt">&lt;/artifactId&gt;</span>
<span class="nt">&lt;version&gt;</span>1.0.3<span class="nt">&lt;/version&gt;</span>
<span class="nt">&lt;version&gt;</span>1.0.4<span class="nt">&lt;/version&gt;</span>
<span class="nt">&lt;/dependency&gt;</span>
</pre></div>
</div>
</div>
<div class="tab-content docutils container" id="tab-tab2">
<p class="tab-title">Gradle</p>
<p><strong>Jackson</strong></p>
<div class="highlight-xml"><div class="highlight"><pre><span></span>compile (&#39;com.github.mfatihercik:dsm:1.0.3&#39;)
<div class="highlight-xml"><div class="highlight"><pre><span></span>compile (&#39;com.github.mfatihercik:dsm:1.0.4&#39;)
</pre></div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions docs/quick-start-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Installation
<dependency>
<groupId>com.github.mfatihercik</groupId>
<artifactId>dsm</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
.. tab-container:: tab2
Expand All @@ -199,7 +199,7 @@ Installation

.. code-block:: xml
compile ('com.github.mfatihercik:dsm:1.0.3')
compile ('com.github.mfatihercik:dsm:1.0.4')
Expand Down
5 changes: 2 additions & 3 deletions dsm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ gradle.startParameter.showStacktrace = org.gradle.api.logging.configuration.Show


group = 'com.github.mfatihercik'
version = '1.0.3'
version = '1.0.4'
sourceCompatibility = '1.7'
targetCompatibility = '1.7'

Expand Down Expand Up @@ -90,7 +90,6 @@ repositories {

bintray {
user = 'mfatihercik'

publications = ['DSMPublication']
pkg {
repo = 'github'
Expand All @@ -103,7 +102,7 @@ bintray {
githubRepo = 'mfatihercik/dsm' //Optional Github repository
githubReleaseNotesFile = 'README.md' //Optional Github readme file
version {
name = '1.0.3'
name = '1.0.4'
desc = 'Declarative Stream Mapping (DSM)'
gpg {
sign = true //Determines whether to GPG sign the files. The default is false
Expand Down

0 comments on commit 9d351aa

Please sign in to comment.