Skip to content

Commit 959c02a

Browse files
committed
fixing javadoc issues
1 parent 0093885 commit 959c02a

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/main/java/com/github/searls/jasmine/mojo/AbstractJasmineMojo.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
5151
* before other sources (and specs) in a particular order. Each source will first be
5252
* searched for relative to <code>${jsSrcDir}</code>, then <code>${jsTestSrcDir}</code>,
5353
* then (if it's not found in either) it will be included exactly as it appears in your POM.</p>
54-
* <p/>
54+
* <br>
5555
* <p>Therefore, if jquery.js is in <code>${jsSrcDir}/vendor</code>, you would configure:</p>
5656
* <pre>
5757
* &lt;preloadSources&gt;
5858
* &lt;source&gt;vendor/jquery.js&lt;/source&gt;
5959
* &lt;/preloadSources&gt;
6060
* </pre>
61-
* <p/>
61+
* <br>
6262
* <p>And jquery.js would load before all the other sources and specs.</p>
6363
*
6464
* @since 1.1.0
@@ -71,11 +71,11 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
7171
* and as a result the generated SpecRunner HTML files are set up in a way that you can't run
7272
* your specs. Have no fear! Simply specify a custom spec runner template in the plugin configuration
7373
* and make the changes you need.</p>
74-
* <p/>
74+
* <br>
7575
* <p>Potential values are a filesystem path, a URL, or a classpath resource. The default template is
7676
* stored in <code>src/main/resources/jasmine-templates/SpecRunner.htmltemplate</code>, and the
7777
* required template strings are tokenized in "$*$" patterns.</p>
78-
* <p/>
78+
* <br>
7979
* <p>Example usage:</p>
8080
* <pre>
8181
* &lt;customRunnerTemplate&gt;${project.basedir}/src/test/resources/myCustomRunner.template&lt;/customRunnerTemplate&gt;
@@ -90,7 +90,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
9090
* <p>Sometimes you want to have full control over how scriptloaders are configured. In order to
9191
* interpolate custom configuration into the generated runnerTemplate, specify a file containing
9292
* the additional config. Potential values are a filesystem path, a URL, or a classpath resource.</p>
93-
* <p/>
93+
* <br>
9494
* <p>Example usage:</p>
9595
* <pre>
9696
* &lt;customRunnerConfiguration&gt;${project.basedir}/src/test/resources/myCustomConfig.txt&lt;/customRunnerConfiguration&gt;
@@ -245,7 +245,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
245245
* &lt;include&gt;&#42;&#42;/&#42;.coffee&lt;/include&gt;
246246
* &lt;/sourceIncludes&gt;
247247
* </pre>
248-
* <p/>
248+
* <br>
249249
* <p>Default <code>sourceIncludes</code>:</p>
250250
* <pre>
251251
* &lt;sourceIncludes&gt;
@@ -279,7 +279,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
279279
* &lt;include&gt;&#42;&#42;/&#42;.coffee&lt;/include&gt;
280280
* &lt;/specIncludes&gt;
281281
* </pre>
282-
* <p/>
282+
* <br>
283283
* <p>Default <code>specIncludes</code>:</p>
284284
* <pre>
285285
* &lt;specIncludes&gt;
@@ -304,7 +304,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
304304

305305
/**
306306
* <p>Used by the <code>jasmine:bdd</code> goal to specify port to run the server under.</p>
307-
* <p/>
307+
* <br>
308308
* <p>The <code>jasmine:test</code> goal always uses a random available port so this property is ignored.</p>
309309
*
310310
* @since 1.1.0
@@ -322,7 +322,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
322322

323323
/**
324324
* <p>Not used by the <code>jasmine:bdd</code> goal.</p>
325-
* <p/>
325+
* <br>
326326
* <p>The <code>jasmine:test</code> goal to specify hostname where the server is running. Useful when using
327327
* the RemoteWebDriver.</p>
328328
*
@@ -334,7 +334,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
334334
/**
335335
* <p>Determines the strategy to use when generation the JasmineSpecRunner. This feature allows for custom
336336
* implementation of the runner generator. Typically this is used when using different script runners.</p>
337-
* <p/>
337+
* <br>
338338
* <p>Some valid examples: DEFAULT, REQUIRE_JS</p>
339339
*
340340
* @since 1.1.0
@@ -363,7 +363,7 @@ public abstract class AbstractJasmineMojo extends AbstractMojo implements Jasmin
363363

364364
/**
365365
* <p>Type of {@link org.eclipse.jetty.server.Connector} to use on the jetty server.</p>
366-
* <p/>
366+
* <br>
367367
* <p>Most users won't need to change this from the default value. It should only be used
368368
* by advanced users.</p>
369369
*

src/main/java/com/github/searls/jasmine/mojo/TestMojo.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ public class TestMojo extends AbstractJasmineMojo {
4242
/**
4343
* Determines the Selenium WebDriver class we'll use to execute the tests. See the Selenium documentation for more details.
4444
* The plugin uses <a href="https://github.com/detro/ghostdriver">PhantomJSDriver</a> by default.
45-
* <p/>
45+
* <br>
4646
* <p>Some valid examples:</p>
4747
* <ul>
4848
* <li>org.openqa.selenium.htmlunit.HtmlUnitDriver</li>
4949
* <li>org.openqa.selenium.phantomjs.PhantomJSDriver</li>
5050
* <li>org.openqa.selenium.firefox.FirefoxDriver</li>
5151
* <li>org.openqa.selenium.ie.InternetExplorerDriver</li>
5252
* </ul>
53-
* <p></p>
53+
* <br>
5454
* See the webDriverCapabilities property for configuring driver specific properties.
5555
*
5656
* @since 1.1.0
@@ -60,9 +60,9 @@ public class TestMojo extends AbstractJasmineMojo {
6060

6161
/**
6262
* <p>Web driver capabilities used to initialize a DesiredCapabilities instance when creating a web driver.</p>
63-
* <p/>
63+
* <br>
6464
* <p>Capabilities value can be either a String, a List, or a Map.</p>
65-
* <p/>
65+
* <br>
6666
* <p>Example:</p>
6767
* <pre>
6868
* &lt;webDriverCapabilities&gt;
@@ -94,7 +94,7 @@ public class TestMojo extends AbstractJasmineMojo {
9494
/**
9595
* <p>Determines the browser and version profile that HtmlUnit will simulate. This setting does nothing if the plugin is configured not to use HtmlUnit.
9696
* This maps 1-to-1 with the public static instances found in {@link com.gargoylesoftware.htmlunit.BrowserVersion}.</p>
97-
* <p/>
97+
* <br>
9898
* <p>Some valid examples: CHROME, FIREFOX_17, INTERNET_EXPLORER_9, INTERNET_EXPLORER_10</p>
9999
*
100100
* @since 1.1.0
@@ -119,10 +119,10 @@ public class TestMojo extends AbstractJasmineMojo {
119119

120120
/**
121121
* <p>Configure which version of PhantomJS should be used and how it should be found. The core of the
122-
* <a href="http://klieber.github.io/phantomjs-maven-plugin"></a>phantomjs-maven-plugin</a> is used to provide this
122+
* <a href="http://klieber.github.io/phantomjs-maven-plugin">phantomjs-maven-plugin</a> is used to provide this
123123
* functionality and this parameter should match the configuration of the
124124
* <a href="http://kylelieber.com/phantomjs-maven-plugin/install-mojo.html">phantomjs-maven-plugin install</a> goal.</p>
125-
* <p/>
125+
* <br>
126126
* <p>Default Options:</p>
127127
* <pre>
128128
* &lt;phantomjs&gt;

0 commit comments

Comments
 (0)