Skip to content

Commit

Permalink
fix version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HidekiSugimoto189 committed Dec 13, 2017
1 parent 0919a71 commit 9a35d41
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ Installation
<dependency>
<groupId>jp.co.future</groupId>
<artifactId>uroborosql</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
</dependency>
```

#### for Gradle

```gradle
compile group: 'jp.co.future', name: 'uroborosql', version: '0.4.0'
compile group: 'jp.co.future', name: 'uroborosql', version: '0.5.0'
```

Documentation
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ Installation
<dependency>
<groupId>jp.co.future</groupId>
<artifactId>uroborosql</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
</dependency>
```

#### for Gradle

```gradle
compile group: 'jp.co.future', name: 'uroborosql', version: '0.4.0'
compile group: 'jp.co.future', name: 'uroborosql', version: '0.5.0'
```

Documentation
Expand Down
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>jp.co.future</groupId>
<artifactId>uroborosql</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.5.0</version>
<packaging>jar</packaging>
<name>uroboroSQL</name>
<description>Developer-oriented and SQL centric database access library</description>
Expand Down Expand Up @@ -202,6 +203,15 @@ encoding/<project>=UTF-8
<docencoding>${doc.encoding}</docencoding>
<locale>en_US</locale>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 9a35d41

Please sign in to comment.