Skip to content

Commit c60d2e3

Browse files
author
Greg Meyer
authored
Merge pull request #6 from DirectProjectJavaRI/develop
Releasing 7.0
2 parents 35cd75f + c64d801 commit c60d2e3

22 files changed

+31
-1001
lines changed

pom.xml

Lines changed: 11 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>direct-policy</artifactId>
66
<name>Direct Project policy enablement engine</name>
7-
<version>6.0</version>
7+
<version>7.0</version>
88
<description>Direct Project policy enablement engine</description>
99
<inceptionYear>2010</inceptionYear>
1010
<url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/direct-policy/${project.version}</url>
@@ -26,13 +26,13 @@
2626
<maven>3.0.0</maven>
2727
</prerequisites>
2828
<scm>
29-
<url>scm:git:https://github.com/DirectProjectJavaRI/direct-common.git</url>
30-
<connection>scm:git:https://github.com/DirectProjectJavaRI/direct-common.git</connection>
29+
<url>scm:git:https://github.com/DirectProjectJavaRI/direct-policy.git</url>
30+
<connection>scm:git:https://github.com/DirectProjectJavaRI/direct-policy.git</connection>
3131
</scm>
3232
<parent>
3333
<groupId>org.springframework.boot</groupId>
3434
<artifactId>spring-boot-dependencies</artifactId>
35-
<version>2.1.2.RELEASE</version>
35+
<version>2.2.4.RELEASE</version>
3636
</parent>
3737
<licenses>
3838
<license>
@@ -44,12 +44,12 @@
4444
<dependency>
4545
<groupId>com.thoughtworks.xstream</groupId>
4646
<artifactId>xstream</artifactId>
47-
<version>1.4.9</version>
47+
<version>1.4.11.1</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>org.bouncycastle</groupId>
5151
<artifactId>bcprov-jdk15on</artifactId>
52-
<version>1.60</version>
52+
<version>1.64</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>javax.mail</groupId>
@@ -70,12 +70,7 @@
7070
<dependency>
7171
<groupId>org.apache.commons</groupId>
7272
<artifactId>commons-lang3</artifactId>
73-
</dependency>
74-
<dependency>
75-
<groupId>org.springframework.boot</groupId>
76-
<artifactId>spring-boot-starter-tomcat</artifactId>
77-
<scope>test</scope>
78-
</dependency>
73+
</dependency>
7974
<dependency>
8075
<groupId>org.springframework.boot</groupId>
8176
<artifactId>spring-boot-starter-web</artifactId>
@@ -193,80 +188,10 @@
193188
</execution>
194189
</executions>
195190
</plugin>
196-
<!-- DOXIA does not yet copy resources to the generated-site or site location. Bug
197-
DOXIA-355 was submitted in July of 09 and is listed to be resolved in DOXIA 1.2.
198-
This plugin a is work around for copying the resources from the book source to
199-
the generate site. -->
200-
<plugin>
201-
<groupId>org.apache.maven.plugins</groupId>
202-
<artifactId>maven-antrun-plugin</artifactId>
203-
<executions>
204-
<execution>
205-
<id>book</id>
206-
<phase>pre-site</phase>
207-
<configuration>
208-
<tasks>
209-
<copy todir="${project.build.directory}/generated-site/xdoc/users-guide/images/">
210-
<fileset dir="${basedir}/src/books/users-guide/images/" />
211-
</copy>
212-
<copy todir="${project.build.directory}/site/users-guide/images/">
213-
<fileset dir="${basedir}/src/books/users-guide/images/" />
214-
</copy>
215-
</tasks>
216-
</configuration>
217-
<goals>
218-
<goal>run</goal>
219-
</goals>
220-
</execution>
221-
</executions>
222-
</plugin>
223-
<plugin>
224-
<groupId>org.apache.maven.doxia</groupId>
225-
<artifactId>doxia-maven-plugin</artifactId>
226-
<version>1.2</version>
227-
<executions>
228-
<execution>
229-
<phase>pre-site</phase>
230-
<goals>
231-
<goal>render-books</goal>
232-
</goals>
233-
</execution>
234-
</executions>
235-
<configuration>
236-
<books>
237-
<book>
238-
<directory>src/books/users-guide</directory>
239-
<descriptor>src/books/users-guide.xml</descriptor>
240-
<formats>
241-
<format>
242-
<id>xdoc</id>
243-
</format>
244-
</formats>
245-
</book>
246-
</books>
247-
</configuration>
248-
<dependencies>
249-
<dependency>
250-
<groupId>org.codehaus.plexus</groupId>
251-
<artifactId>plexus-utils</artifactId>
252-
<version>1.5.12</version>
253-
</dependency>
254-
<dependency>
255-
<groupId>org.apache.maven.doxia</groupId>
256-
<artifactId>doxia-decoration-model</artifactId>
257-
<version>1.2</version>
258-
</dependency>
259-
<dependency>
260-
<groupId>org.apache.maven.doxia</groupId>
261-
<artifactId>doxia-module-confluence</artifactId>
262-
<version>1.2</version>
263-
</dependency>
264-
</dependencies>
265-
</plugin>
266191
<plugin>
267192
<groupId>org.apache.maven.plugins</groupId>
268193
<artifactId>maven-javadoc-plugin</artifactId>
269-
<version>2.6.1</version>
194+
<version>2.9.1</version>
270195
<configuration>
271196
<additionalparam>-Xdoclint:none</additionalparam>
272197
<charset>UTF-8</charset>
@@ -289,7 +214,7 @@
289214
</goals>
290215
</execution>
291216
</executions>
292-
</plugin>
217+
</plugin>
293218
<plugin>
294219
<groupId>org.apache.maven.plugins</groupId>
295220
<artifactId>maven-gpg-plugin</artifactId>
@@ -302,7 +227,7 @@
302227
</goals>
303228
</execution>
304229
</executions>
305-
</plugin>
230+
</plugin>
306231
</plugins>
307232
</build>
308233
<reporting>
@@ -315,7 +240,7 @@
315240
<plugin>
316241
<groupId>org.apache.maven.plugins</groupId>
317242
<artifactId>maven-javadoc-plugin</artifactId>
318-
<version>2.6.1</version>
243+
<version>2.9.1</version>
319244
<configuration>
320245
<additionalparam>-Xdoclint:none</additionalparam>
321246
<charset>UTF-8</charset>

src/books/users-guide.xml

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)