Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Aug 26, 2015
1 parent 01ba88e commit b5278a7
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ You can test it on [http://portalproperti.es](http://portalproperti.es)

### Command line version

You can also call the service from command line using [curl](http://curl.haxx.se/). If you don't provide a Liferay version it will use the default that is 6.2.3-ga4.
You can also call the service from command line using [curl](http://curl.haxx.se/). If you don't provide a Liferay version it will use the default that is 1.4.0-ga4.

```shell
curl http://portalproperti.es/prettify -F portalPropertiesFile=@/path/to/portal-ext.properties
```

If you need to use a different Liferay version, for instance 6.1.0-ga1, you must use the following format
If you need to use a different Liferay version, for instance 1.4.0-ga1, you must use the following format

```shell
curl http://portalproperti.es/prettify/6.1.0-ga1 -F portalPropertiesFile=@/path/to/portal-ext.properties
curl http://portalproperti.es/prettify/1.4.0-ga1 -F portalPropertiesFile=@/path/to/portal-ext.properties
```

Or if you need to print the original value of each customized property you must call the service this way

```shell
curl http://portalproperti.es/prettify/6.2.3-g4/true -F portalPropertiesFile=@/path/to/portal-ext.properties
curl http://portalproperti.es/prettify/1.4.0-g4/true -F portalPropertiesFile=@/path/to/portal-ext.properties
```

### Sample
Expand Down Expand Up @@ -64,11 +64,11 @@ curl http://portalproperti.es/prettify/6.2.3-g4/true -F portalPropertiesFile=@/p
#javascript.fast.load=true

##
## Obsolete properties of 6.1.0-ga1
## Obsolete properties of 1.4.0-ga1
##

#
# The properties listed below are obsolete for version 6.2.3-ga4 which
# The properties listed below are obsolete for version 1.4.0-ga4 which
# means that they don't have any influence in how Liferay is configured
# and are safe be to removed.
#
Expand Down Expand Up @@ -127,15 +127,15 @@ Maven:
<dependency>
<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>portal-properties-prettier-app</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
<type>lpkg</type>
</dependency>
```
Gradle:

```groovy
dependencies {
compile(group: "br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app", name: "portal-properties-prettier-app", version: "1.3.0", type: "lpkg");
compile(group: "br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app", name: "portal-properties-prettier-app", version: "1.4.0", type: "lpkg");
}
```
### Support
Expand Down
2 changes: 1 addition & 1 deletion cores/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>portal-properties-prettier-app-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>cores</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cores/portal-properties-prettier-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>cores</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>portal-properties-prettier-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>portal-properties-prettier-app-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>portal-properties-prettier-app</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>portal-properties-prettier-app-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0</version>
<packaging>pom</packaging>

<name>Portal Properties Prettier App Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion portlets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>portal-properties-prettier-app-parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>portlets</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion portlets/portal-properties-prettier-portlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>br.com.thiagomoreira.liferay.plugins.portal-properties-prettier-app</groupId>
<artifactId>portlets</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0</version>
</parent>

<artifactId>portal-properties-prettier-portlet</artifactId>
Expand Down

0 comments on commit b5278a7

Please sign in to comment.