Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlaf Otto2016-04-28 13:57:43 +0000
committerOlaf Otto2016-04-28 13:57:43 +0000
commitc441cbbed0b24738003fd451066053e49da837e9 (patch)
treefab8508083925d30f554eaaf915e964ff3222d03
parent51dd29e109874d7cecb274a2daab02b5ed0dbe6d (diff)
downloadblueprint-c441cbbed0b24738003fd451066053e49da837e9.tar.gz
blueprint-c441cbbed0b24738003fd451066053e49da837e9.tar.xz
blueprint-c441cbbed0b24738003fd451066053e49da837e9.zip
- Release 2.0.0
Added code highlighting capabilities <div> -> <pre>
-rw-r--r--download/_index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/download/_index.html b/download/_index.html
index a32b4ae..c0ebd89 100644
--- a/download/_index.html
+++ b/download/_index.html
@@ -9,7 +9,7 @@
As of 2.0.0, the gemini blueprint artifacts are available directly from <a href="http://search.maven.org/#search|ga|1|g%3Aorg.eclipse.gemini.blueprint">maven central</a>.
You may reference them in a maven pom, like so:
- <div class="editor" data-editor-lang="xml" data-editor-no-focus="true">
+ <pre class="editor" data-editor-lang="xml" data-editor-no-focus="true">
&lt;dependency&gt;
&lt;groupId&gt;org.eclipse.gemini.blueprint&lt;/groupId&gt;
&lt;artifactId&gt;gemini-blueprint-io&lt;/artifactId&gt;
@@ -25,11 +25,11 @@
&lt;artifactId&gt;gemini-blueprint-core&lt;/artifactId&gt;
&lt;version&gt;2.0.0.RELEASE&lt;/version&gt;
&lt;/dependency&gt;
- </div>
+ </pre>
<p>The additional mock and test dependencies are available via</p>
- <div class="editor" data-editor-lang="xml" data-editor-no-focus="true">
+ <pre class="editor" data-editor-lang="xml" data-editor-no-focus="true">
&lt;dependency&gt;
&lt;groupId&gt;org.eclipse.gemini.blueprint&lt;/groupId&gt;
&lt;artifactId&gt;gemini-blueprint-mock&lt;/artifactId&gt;
@@ -40,7 +40,7 @@
&lt;artifactId&gt;gemini-blueprint-test&lt;/artifactId&gt;
&lt;version&gt;2.0.0.RELEASE&lt;/version&gt;
&lt;/dependency&gt;
- </div>
+ </pre>
<h2>Previous milestones</h2>
<a href="http://www.eclipse.org/downloads/download.php?file=/blueprint/gemini-blueprint-2.0.0.M02.zip">Gemini Blueprint 2.0.0.M02</a>

Back to the top