Skip to content

Commit

Permalink
Updated dependencies; Streamlined releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Perry committed Jan 13, 2021
1 parent a3a99a1 commit ed9a330
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ thymeleaf-tdd
=============

Test Driven Development framework for Spring (3 and 4) with Thymeleaf and Thymesheet.
_Source for Spring 4 is on the 'spring4' branch_
_Source for Spring 3 is on the 'spring3' branch_

## Maven

Expand All @@ -11,7 +11,7 @@ Include the latest release from Maven,
<dependency>
<groupId>com.connect-group</groupId>
<artifactId>thymeleaf-tdd</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<scope>test</scope>
</dependency>
Expand All @@ -20,7 +20,7 @@ If you are using Spring 4, the dependancy is slightly different.
<dependency>
<groupId>com.connect-group</groupId>
<artifactId>thymeleaf-tdd-spring4</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<scope>test</scope>
</dependency>

Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>com.connect-group</groupId>
<artifactId>thymeleaf-tdd</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>

<name>Thymeleaf TDD</name>
<description>Test-Driven Development framework for Thymeleaf and Thymesheet</description>
Expand Down Expand Up @@ -50,15 +50,15 @@
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<id>sonatype-nexus-releases</id>
<name>Sonatype Nexus Releases</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springframework.version>3.1.2.RELEASE</springframework.version>
<springframework.version>3.2.18.RELEASE</springframework.version>
<java-version>1.6</java-version>
</properties>

Expand Down Expand Up @@ -105,14 +105,14 @@
<dependency>
<groupId>com.connect-group</groupId>
<artifactId>thymesheet-spring3</artifactId>
<version>2.1.2</version>
<version>2.2.0</version>
</dependency>

<!-- Thymeleaf dependancy: for HTML that is not XHTML -->
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.18</version>
<version>1.9.21</version>
</dependency>


Expand Down
6 changes: 6 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
set -e -x

mvn clean deploy -P sonatype-oss-release
mvn nexus-staging:release

0 comments on commit ed9a330

Please sign in to comment.