Skip to content

Commit

Permalink
Change project name and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jelovirt committed Oct 17, 2017
1 parent 5f2ba81 commit 61e93d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -5,7 +5,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

group = 'com.elovirta.dita'
version = "1.3.0"
version = "2.0"

repositories {
mavenLocal()
Expand Down Expand Up @@ -35,7 +35,7 @@ task dist(type: Zip) {
from("src/main") {
include "plugin.xml"
expand(
id: "${project.group}.${project.name}",
id: project.name,
version: project.version
)
}
Expand Down Expand Up @@ -66,5 +66,5 @@ task dist(type: Zip) {
year: new Date().format('yyyy')
)
}
archiveName "${project.group}.${project.name}_${project.version}.zip"
archiveName "${project.name}-${project.version}.zip"
}
2 changes: 1 addition & 1 deletion settings.gradle
@@ -1,2 +1,2 @@
rootProject.name = 'markdown'
rootProject.name = 'org.lwdita'

3 changes: 1 addition & 2 deletions src/main/plugin.xml
Expand Up @@ -6,13 +6,13 @@
<transtype name="markdown_gitbook" desc="GitBook"/>
<feature extension="dita.conductor.target.relative" file="conductor.xml"/>
<!-- common -->
<feature extension="dita.conductor.lib.import" file="lib/${id}-${version}.jar"/>
<feature extension="dita.conductor.lib.import" file="lib/htmlparser-1.4.jar"/>
<!-- Markdown to DITA -->
<template file="build-markdown_template.xml"/>
<template file="xsl/dita2markdown_template.xsl"/>
<!--template file="xsl/map2markdown-toc_template.xsl"/-->
<template file="xsl/map2markdown-cover_template.xsl"/>
<feature extension="dita.conductor.lib.import" file="lib/markdown-${version}.jar"/>
<feature extension="dita.conductor.lib.import" file="lib/flexmark-all-0.26.4.jar"/>
<feature extension="dita.conductor.lib.import" file="lib/flexmark-profile-pegdown-0.26.4.jar"/>
<feature extension="dita.conductor.lib.import" file="lib/flexmark-ext-abbreviation-0.26.4.jar"/>
Expand Down Expand Up @@ -52,7 +52,6 @@
</feature>
<!-- HTML to DITA -->
<template file="build-html_template.xml"/>
<feature extension="dita.conductor.lib.import" file="html-${version}.jar"/>
<feature extension="dita.parser">
<parser format="html" class="com.elovirta.dita.html.HtmlReader"/>
<parser format="hdita" class="com.elovirta.dita.html.HtmlReader"/>
Expand Down

0 comments on commit 61e93d5

Please sign in to comment.