Skip to content

Commit 79de7b9

Browse files
committed
Added Change report
1 parent be2a72e commit 79de7b9

File tree

2 files changed

+84
-5
lines changed

2 files changed

+84
-5
lines changed

pom.xml

Lines changed: 61 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<groupId>com.github.derjust</groupId>
55
<artifactId>spring-data-dynamodb</artifactId>
66
<version>5.0.1-SNAPSHOT</version>
7-
<name>Spring Data DynamoDb</name>
8-
<description>Spring Data module providing support for DynamoDb repositories.</description>
7+
<name>Spring Data DynamoDB</name>
8+
<description>The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for Amazon DynamoDB based data access layers.</description>
99
<url>http://github.com/derjust/spring-data-dynamodb</url>
1010

1111
<licenses>
@@ -21,10 +21,10 @@
2121
<hibernate-validator.version>5.2.4.Final</hibernate-validator.version>
2222
<aws-java-sdk.version>1.11.232</aws-java-sdk.version>
2323
<junit.version>4.12</junit.version>
24-
<mockito.version>1.10.19</mockito.version>
24+
<mockito.version>2.13.0</mockito.version>
2525

2626
<cdi.version>1.2</cdi.version>
27-
<logback.version>1.1.7</logback.version>
27+
<logback.version>1.2.3</logback.version>
2828

2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -81,6 +81,13 @@
8181
<artifactId>logback-classic</artifactId>
8282
<version>${logback.version}</version>
8383
</dependency>
84+
85+
<!-- AWS SDK comes with dependencies to 1.2 and 1.1.3 therefore locking down on 1.2 -->
86+
<dependency>
87+
<groupId>commons-logging</groupId>
88+
<artifactId>commons-logging</artifactId>
89+
<version>1.2</version>
90+
</dependency>
8491
</dependencies>
8592
</dependencyManagement>
8693

@@ -441,6 +448,33 @@
441448
</execution>
442449
</executions>
443450
</plugin>
451+
<plugin>
452+
<!-- Deploy the web site -->
453+
<groupId>com.github.github</groupId>
454+
<artifactId>site-maven-plugin</artifactId>
455+
<version>0.9</version>
456+
<executions>
457+
<execution>
458+
<goals>
459+
<goal>site</goal>
460+
</goals>
461+
<!-- select the Maven phase in which the plugin will be executed -->
462+
<phase>site-deploy</phase>
463+
<configuration>
464+
<!-- Plugin configuration ges here -->
465+
466+
<server>github</server>
467+
468+
<!-- The commit message -->
469+
<message>Building site</message>
470+
<!-- The location where the site is uploaded -->
471+
<path>${site.path}</path>
472+
<!-- Use merge or override the content -->
473+
<merge>true</merge>
474+
</configuration>
475+
</execution>
476+
</executions>
477+
</plugin>
444478
</plugins>
445479
</build>
446480
</profile>
@@ -453,12 +487,30 @@
453487
<timezone>0</timezone>
454488
</developer>
455489
<developer>
456-
<name>Sebastian Just</name>
490+
<id>derjust</id>
491+
<name>Sebastian J</name>
457492
<email>[email protected]</email>
458493
<timezone>America/New_York</timezone>
459494
</developer>
460495
</developers>
461496

497+
<reporting>
498+
<plugins>
499+
<plugin>
500+
<groupId>org.apache.maven.plugins</groupId>
501+
<artifactId>maven-changes-plugin</artifactId>
502+
<version>2.12.1</version>
503+
<reportSets>
504+
<reportSet>
505+
<reports>
506+
<report>changes-report</report>
507+
</reports>
508+
</reportSet>
509+
</reportSets>
510+
</plugin>
511+
</plugins>
512+
</reporting>
513+
462514
<distributionManagement>
463515
<snapshotRepository>
464516
<id>ossrh</id>
@@ -469,5 +521,9 @@
469521
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
470522
</repository>
471523
</distributionManagement>
524+
<issueManagement>
525+
<system>GitHub</system>
526+
<url>https://github.com/derjust/spring-data-dynamodb/issues</url>
527+
</issueManagement>
472528

473529
</project>

src/changes/changes.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<document xmlns="http://maven.apache.org/changes/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
4+
<properties>
5+
<title>spring-data-dynamodb Changes</title>
6+
<author email="[email protected]" >derjust</author>
7+
</properties>
8+
<body>
9+
<release version="5.0.1" date="" description="Maintenance release" >
10+
<action dev="derjust" issue="68" type="fix" date="2017-12-01" >
11+
Respecting DynamoDBOperations.batchSave()'s List&lt;FailedBatch&gt; return value and turn it into a BatchWriteException
12+
</action>
13+
<action dev="derjust" type="add" date="2017-12-01" >
14+
Added maven-changes-plugin to build process
15+
</action>
16+
</release>
17+
<release version="5.0.0" date="2017-11-27" description="Spring 5 release" >
18+
<action dev="derjust" type="add">
19+
Added Spring 5 / Spring-Data Kay support
20+
</action>
21+
</release>
22+
</body>
23+
</document>

0 commit comments

Comments
 (0)