Skip to content

Commit

Permalink
update to 5.3.0.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
bturamatuyu committed Mar 13, 2017
1 parent 215a44c commit a60b68b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 19 deletions.
20 changes: 8 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,19 @@ To create multi blank project with MyBatis3
#### for CommandPrompt

``` console
mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate^
-DarchetypeCatalog=http://repo.terasoluna.org/nexus/content/repositories/terasoluna-gfw-releases^
mvn archetype:generate^
-DarchetypeGroupId=org.terasoluna.gfw.blank^
-DarchetypeArtifactId=terasoluna-gfw-multi-web-blank-mybatis3-archetype^
-DarchetypeVersion=5.2.0.RELEASE
-DarchetypeVersion=5.3.0.RELEASE
```

#### for Bash

``` console
mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate\
-DarchetypeCatalog=http://repo.terasoluna.org/nexus/content/repositories/terasoluna-gfw-releases\
mvn archetype:generate\
-DarchetypeGroupId=org.terasoluna.gfw.blank\
-DarchetypeArtifactId=terasoluna-gfw-multi-web-blank-mybatis3-archetype\
-DarchetypeVersion=5.2.0.RELEASE
-DarchetypeVersion=5.3.0.RELEASE
```

### multi blank project with JPA (Spring Data JPA)
Expand All @@ -31,19 +29,17 @@ To create multi blank project with JPA (Spring Data JPA)
#### for CommandPrompt

``` console
mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate^
-DarchetypeCatalog=http://repo.terasoluna.org/nexus/content/repositories/terasoluna-gfw-releases^
mvn archetype:generate^
-DarchetypeGroupId=org.terasoluna.gfw.blank^
-DarchetypeArtifactId=terasoluna-gfw-multi-web-blank-jpa-archetype^
-DarchetypeVersion=5.2.0.RELEASE
-DarchetypeVersion=5.3.0.RELEASE
```

#### for Bash

``` console
mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate\
-DarchetypeCatalog=http://repo.terasoluna.org/nexus/content/repositories/terasoluna-gfw-releases\
mvn archetype:generate\
-DarchetypeGroupId=org.terasoluna.gfw.blank\
-DarchetypeArtifactId=terasoluna-gfw-multi-web-blank-jpa-archetype\
-DarchetypeVersion=5.2.0.RELEASE
-DarchetypeVersion=5.3.0.RELEASE
```
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>xxxxxx.yyyyyy.zzzzzz</groupId>
<artifactId>projectName</artifactId>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<packaging>pom</packaging>
<modules>
<module>projectName-env</module>
Expand All @@ -15,7 +15,7 @@
<parent>
<groupId>org.terasoluna.gfw</groupId>
<artifactId>terasoluna-gfw-parent</artifactId>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<relativePath />
</parent>

Expand Down
2 changes: 1 addition & 1 deletion projectName-domain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>xxxxxx.yyyyyy.zzzzzz</groupId>
<artifactId>projectName</artifactId>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion projectName-env/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>xxxxxx.yyyyyy.zzzzzz</groupId>
<artifactId>projectName</artifactId>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion projectName-initdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>xxxxxx.yyyyyy.zzzzzz</groupId>
<artifactId>projectName</artifactId>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion projectName-selenium/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>projectName-selenium</artifactId>
<packaging>jar</packaging>
<parent>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<artifactId>projectName</artifactId>
<groupId>xxxxxx.yyyyyy.zzzzzz</groupId>
<relativePath>../pom.xml</relativePath>
Expand Down
2 changes: 1 addition & 1 deletion projectName-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>xxxxxx.yyyyyy.zzzzzz</groupId>
<artifactId>projectName</artifactId>
<version>5.3.0-SNAPSHOT</version>
<version>5.3.0.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit a60b68b

Please sign in to comment.