Skip to content

Commit

Permalink
Made github pages work
Browse files Browse the repository at this point in the history
  • Loading branch information
derjust committed Jan 6, 2018
1 parent be8b41c commit fd1a60b
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 5 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

The primary goal of the [Spring® Data](http://www.springsource.org/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 a data access layer built on [AWS DynamoDB](https://aws.amazon.com/dynamodb/).
Technical infos can be found on the [project page](https://derjust.github.io/spring-data-dynamodb/).

## Supported Features ##

Expand Down Expand Up @@ -280,11 +281,17 @@ Advanced topics can be found in the [wiki](https://github.com/derjust/spring-dat

## Release process ##

Check `pom.xml` for the proper `<version />`, afterwards execute
1. Check `pom.xml` for the proper `<version />` tag
1. Update `src/changes/changes.xml` timestamp of the release version
1. Update `README.md` version for the Maven/Gradle examples

Then execute

```
$ mvn release:prepare && mvn release:perform
```

which will tag, build, test and upload the artifacts to Sonatype's OSS staging area & closes the staging repository.
Maven Central synchronization usually takes ~15 minutes.

Finally create a new section in `src/changes/changes.xml`.
32 changes: 29 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<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 a data access layer built on AWS DynamoDB.</description>
<url>http://github.com/derjust/spring-data-dynamodb</url>
<url>https://github.com/derjust/spring-data-dynamodb</url>

<licenses>
<license>
Expand Down Expand Up @@ -281,7 +281,7 @@
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
<goals>deploy site-deploy</goals>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -415,6 +415,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -427,6 +428,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -449,12 +451,21 @@
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
<!-- Deactivate as Github plugin controls the upload -->
<skipDeploy>true</skipDeploy>
</configuration>
</plugin>
<plugin>
<!-- Deploy the web site -->
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.9</version>
<version>0.12</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -495,6 +506,16 @@
<timezone>America/New_York</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Gaurav Rawat</name>
<url>https://github.com/gauravbrills</url>
</contributor>
<contributor>
<name>Michael Wyraz</name>
<url>https://github.com/micw</url>
</contributor>
</contributors>

<reporting>
<plugins>
Expand All @@ -510,6 +531,11 @@
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</reporting>

Expand Down
10 changes: 9 additions & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
<author email="[email protected]" >derjust</author>
</properties>
<body>
<release version="5.0.1" date="" description="Maintenance release" >
<release version="5.0.2" date="" description="Maintenance release">

</release>
<release version="5.0.1" date="2018-01-06" description="Maintenance release">
<action dev="derjust" issue="68" type="fix" date="2017-12-01" >
Respecting DynamoDBOperations.batchSave()'s List&lt;FailedBatch&gt; return value and turn it into a BatchWriteException
</action>
Expand All @@ -28,6 +31,11 @@
Added Spring 5 / Spring-Data Kay support
</action>
</release>
<release version="4.5.2" date="2017-12-24" description="Backport of PR #106">
<action dev="Gaurav Rawat" type="fix" issue="91">
Fixed false assertion introduced implementing #91
</action>
</release>
<release version="4.5.1" date="2017-12-19">
<action dev="Michael Wyraz" type="fix" issue="91">
Add constructor to DynamoDBTemplate that takes a preconfigured DynamoDBMapper
Expand Down

0 comments on commit fd1a60b

Please sign in to comment.