Skip to content

Commit

Permalink
0.4 release
Browse files Browse the repository at this point in the history
fixes #3
  • Loading branch information
monitorjbl committed May 31, 2015
1 parent 4101f9e commit b127d5a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
3 changes: 1 addition & 2 deletions json-view/pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.monitorjbl</groupId>
<artifactId>json-view</artifactId>
<version>0.4-SNAPSHOT</version>
<version>0.4</version>
<name>json-view</name>
<description>Provides programmatic exclusion/inclusion for Jackson JSON serialization</description>
<url>https://github.com/monitorjbl/json-view</url>
Expand Down Expand Up @@ -143,5 +143,4 @@
<scope>test</scope>
</dependency>
</dependencies>

</project>
17 changes: 15 additions & 2 deletions pom.xml
Expand Up @@ -5,10 +5,23 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.monitorjbl</groupId>
<artifactId>aggregator</artifactId>
<version>0.4-SNAPSHOT</version>
<artifactId>json-view-aggregator</artifactId>
<version>1.0</version>
<packaging>pom</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

<modules>
<module>spring-json-view</module>
<module>json-view</module>
Expand Down
6 changes: 6 additions & 0 deletions release.sh
@@ -0,0 +1,6 @@
#!/bin/bash

cd json-view
mvn versions:set -DnewVersion=0.4 -DgenerateBackupPoms=false && cd ..
cd spring-json-view
mvn versions:set -DnewVersion=0.4 -DgenerateBackupPoms=false && cd ..
2 changes: 1 addition & 1 deletion spring-json-view/pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.monitorjbl</groupId>
<artifactId>spring-json-view</artifactId>
<version>0.4-SNAPSHOT</version>
<version>0.4</version>
<name>spring-json-view</name>
<description>Provides programmatic JSON response manipulation for Spring MVC</description>
<url>https://github.com/monitorjbl/spring-json-view</url>
Expand Down

0 comments on commit b127d5a

Please sign in to comment.