Skip to content

Commit 0204caa

Browse files
updated mvn site
1 parent f893ad5 commit 0204caa

File tree

4 files changed

+96
-18
lines changed

4 files changed

+96
-18
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,22 @@ Hele-Shaw flow, mineral deposits, and dielectric breakdown.
1010
Ref: http://en.wikipedia.org/wiki/Diffusion-limited_aggregation
1111

1212

13-
Run the Desktop Application
14-
---------------------------
13+
Run the Application
14+
-------------------
1515

1616
git clone https://github.com/phasenraum2010/diffusion-limited-aggregation.git
1717

1818
cd diffusion-limited-aggregation
1919

2020
mvn clean install exec:java
2121

22-
Run the Java Applet
23-
-------------------
24-
25-
go to: http://www.thomas-woehlke.de/a/diffusion-limited-aggregation
26-
2722
Project Documentation
2823
---------------------
2924

3025
go to: http://www.thomas-woehlke.de/p/diffusion-limited-aggregation
3126

27+
Blog and Download
28+
-----------------
29+
go to: http://thomas-woehlke.blogspot.de/2016/01/diffusion-limited-aggregation.html
30+
3231

pom.xml

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,27 @@
203203
<plugin>
204204
<groupId>org.apache.maven.plugins</groupId>
205205
<artifactId>maven-site-plugin</artifactId>
206-
<version>3.3</version>
206+
<version>3.4</version>
207207
<inherited>true</inherited>
208208
<configuration>
209209
<locales>en</locales>
210210
<outputDirectory>target/site</outputDirectory>
211211
<outputEncoding>${encoding}</outputEncoding>
212212
<generateReports>true</generateReports>
213213
</configuration>
214+
<dependencies>
215+
<dependency>
216+
<groupId>lt.velykis.maven.skins</groupId>
217+
<artifactId>reflow-velocity-tools</artifactId>
218+
<version>1.1.1</version>
219+
</dependency>
220+
<!-- Reflow skin requires Velocity >= 1.7 -->
221+
<dependency>
222+
<groupId>org.apache.velocity</groupId>
223+
<artifactId>velocity</artifactId>
224+
<version>1.7</version>
225+
</dependency>
226+
</dependencies>
214227
</plugin>
215228

216229
<!-- http://maven.apache.org/plugins/maven-dependency-plugin/usage.html -->
@@ -273,7 +286,7 @@
273286
<plugin>
274287
<groupId>org.apache.maven.plugins</groupId>
275288
<artifactId>maven-project-info-reports-plugin</artifactId>
276-
<version>2.7</version>
289+
<version>2.8.1</version>
277290
</plugin>
278291

279292
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>
@@ -283,7 +296,7 @@
283296
<plugin>
284297
<groupId>org.apache.maven.plugins</groupId>
285298
<artifactId>maven-javadoc-plugin</artifactId>
286-
<version>2.9.1</version>
299+
<version>2.10.3</version>
287300
<configuration>
288301
<!-- <links> <link>http://java.sun.com/javase/6/docs/api/</link> <link>http://static.springframework.org/spring/docs/3.0.x/api/</link>
289302
<link>http://static.springframework.org/spring-webflow/docs/2.1.x/javadoc-api/</link>
@@ -304,7 +317,7 @@
304317
<plugin>
305318
<groupId>org.apache.maven.plugins</groupId>
306319
<artifactId>maven-checkstyle-plugin</artifactId>
307-
<version>2.10</version>
320+
<version>2.17</version>
308321
<configuration>
309322
<encoding>${encoding}</encoding>
310323
</configuration>
@@ -313,7 +326,7 @@
313326
<plugin>
314327
<groupId>org.codehaus.mojo</groupId>
315328
<artifactId>findbugs-maven-plugin</artifactId>
316-
<version>2.5.2</version>
329+
<version>3.0.3</version>
317330
<configuration>
318331
<onlyAnalyze>org.woehlke.*</onlyAnalyze>
319332
<omitVisitors>FindDeadLocalStores</omitVisitors>
@@ -327,17 +340,17 @@
327340
<plugin>
328341
<groupId>org.apache.maven.plugins</groupId>
329342
<artifactId>maven-jxr-plugin</artifactId>
330-
<version>2.3</version>
343+
<version>2.5</version>
331344
</plugin>
332345

333346
<plugin>
334347
<groupId>org.apache.maven.plugins</groupId>
335348
<artifactId>maven-pmd-plugin</artifactId>
336-
<version>3.0.1</version>
349+
<version>3.6</version>
337350
<configuration>
338351
<sourceEncoding>${encoding}</sourceEncoding>
339352
<minimumTokens>100</minimumTokens>
340-
<targetJdk>1.6</targetJdk>
353+
<targetJdk>1.8</targetJdk>
341354
<excludeRoots>
342355
<excludeRoot>target</excludeRoot>
343356
</excludeRoots>
@@ -356,7 +369,7 @@
356369
<plugin>
357370
<groupId>org.apache.maven.plugins</groupId>
358371
<artifactId>maven-changes-plugin</artifactId>
359-
<version>2.9</version>
372+
<version>2.11</version>
360373
<configuration>
361374
<githubAPIScheme>https</githubAPIScheme>
362375
<githubAPIPort>443</githubAPIPort>
@@ -373,13 +386,13 @@
373386
<plugin>
374387
<groupId>org.apache.maven.plugins</groupId>
375388
<artifactId>maven-surefire-report-plugin</artifactId>
376-
<version>2.15</version>
389+
<version>2.19.1</version>
377390
</plugin>
378391

379392
<plugin>
380393
<groupId>org.codehaus.mojo</groupId>
381394
<artifactId>cobertura-maven-plugin</artifactId>
382-
<version>2.5.2</version>
395+
<version>2.7</version>
383396
</plugin>
384397

385398
</plugins>
1.72 KB
Loading

src/site/site.xml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0
5+
http://maven.apache.org/xsd/decoration-1.0.0.xsd">
6+
<skin>
7+
<groupId>lt.velykis.maven.skins</groupId>
8+
<artifactId>reflow-maven-skin</artifactId>
9+
<version>1.1.1</version>
10+
</skin>
11+
<!-- http://andriusvelykis.github.io/reflow-maven-skin/skin/ -->
12+
<bannerLeft>
13+
<name>Diffusion-limited aggregation</name>
14+
<src>/img/phasenraum_logo.gif</src>
15+
<href>http://www.thomas-woehlke.de/p/diffusion-limited-aggregation/</href>
16+
</bannerLeft>
17+
<body>
18+
<menu ref="parent"/>
19+
<menu ref="modules"/>
20+
<menu ref="reports"/>
21+
</body>
22+
<publishDate position="navigation-bottom"/>
23+
<poweredBy>
24+
<logo name="Maven" href="http://maven.apache.org/"
25+
img="http://maven.apache.org/images/logos/maven-feather.png"/>
26+
</poweredBy>
27+
<custom>
28+
<reflowSkin>
29+
<theme>bootswatch-spacelab</theme>
30+
<highlightJs>true</highlightJs>
31+
<brand>
32+
<name>Diffusion-limited aggregation</name>
33+
<href>https://github.com/phasenraum2010/diffusion-limited-aggregation</href>
34+
</brand>
35+
<slogan>Diffusion-limited aggregation (DLA) is the process whereby particles undergoing a random walk due to Brownian motion cluster together to form aggregates of such particles.</slogan>
36+
<titleTemplate>%2$s | %1$s</titleTemplate>
37+
<toc>top</toc>
38+
<topNav>Download|reports</topNav>
39+
<bottomNav>
40+
<column>Main|Download</column>
41+
<column>Documentation</column>
42+
<column>reports|modules</column>
43+
</bottomNav>
44+
<bottomDescription>
45+
Diffusion-limited aggregation (DLA) is the process whereby particles undergoing a random walk due to Brownian motion cluster together to form aggregates of such particles.
46+
</bottomDescription>
47+
<pages>
48+
<index project="project-id">
49+
<shortTitle>Welcome</shortTitle>
50+
<breadcrumbs>true</breadcrumbs>
51+
<toc>true</toc>
52+
<sections>
53+
<carousel />
54+
<body />
55+
<sidebar />
56+
<thumbs>2</thumbs>
57+
<columns>3</columns>
58+
</sections>
59+
</index>
60+
<developer-info>
61+
<toc>sidebar</toc>
62+
</developer-info>
63+
</pages>
64+
</reflowSkin>
65+
</custom>
66+
</project>

0 commit comments

Comments
 (0)