Skip to content

Commit 37e20dd

Browse files
committed
Add an initial change log and wire it into the generated site
1 parent 7ff0d1d commit 37e20dd

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Change Log
2+
3+
## Release 1.1.1 (Unreleased)
4+
5+
### Added
6+
7+
- Limit and offset support in the select statement
8+
9+
10+
## Release 1.1.0

pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,30 @@
6060
</plugin>
6161
</plugins>
6262
</pluginManagement>
63+
<plugins>
64+
<!-- Copy the changelog into the generated site -->
65+
<plugin>
66+
<artifactId>maven-resources-plugin</artifactId>
67+
<executions>
68+
<execution>
69+
<id>copy-changelog</id>
70+
<phase>pre-site</phase>
71+
<goals>
72+
<goal>copy-resources</goal>
73+
</goals>
74+
<configuration>
75+
<outputDirectory>${project.build.directory}/generated-site/markdown/docs</outputDirectory>
76+
<resources>
77+
<resource>
78+
<directory>${basedir}</directory>
79+
<include>CHANGELOG.md</include>
80+
</resource>
81+
</resources>
82+
</configuration>
83+
</execution>
84+
</executions>
85+
</plugin>
86+
</plugins>
6387
</build>
6488

6589
<reporting>

src/site/site.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
<body>
3636
<menu name="User's Guide">
3737
<item href="docs/introduction.html" name="Introduction" />
38+
<item href="docs/CHANGELOG.html" name="Change Log" />
3839
<item href="docs/quickStart.html" name="Quick Start" />
3940
<item href="docs/whereClauses.html" name="WHERE Clause Support" >
4041
<item href="docs/conditions.html" name="WHERE Conditions"/>

0 commit comments

Comments
 (0)