Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alberlau committed Dec 22, 2023
1 parent b168d05 commit 9fb3e49
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Modify your pom.xml as bellow and adjust necessary parameters:
<plugin>
<groupId>org.db2code</groupId>
<artifactId>java-pojo-generator-mojo</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<configuration>
<jdbcUrl>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;INIT=RUNSCRIPT FROM '${project.basedir}/init.sql'</jdbcUrl>
<jdbcClassName>org.h2.Driver</jdbcClassName>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.db2code</groupId>
<artifactId>DB2Code</artifactId>
<version>1.0</version>
<version>1.0.1</version>
</parent>

<artifactId>core</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions java-pojo-generator-mojo-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.db2code</groupId>
<artifactId>DB2Code</artifactId>
<version>1.0</version>
<version>1.0.1</version>
</parent>

<artifactId>java-pojo-generator-mojo-example</artifactId>
Expand Down Expand Up @@ -62,7 +62,7 @@
<plugin>
<groupId>org.db2code</groupId>
<artifactId>java-pojo-generator-mojo</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<executions>
<execution>
<id>pojoExecution</id>
Expand Down
4 changes: 2 additions & 2 deletions java-pojo-generator-mojo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.db2code</groupId>
<artifactId>DB2Code</artifactId>
<version>1.0</version>
<version>1.0.1</version>
</parent>

<properties>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>org.db2code</groupId>
<artifactId>java-pojo-generator</artifactId>
<version>1.0</version>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down
4 changes: 2 additions & 2 deletions java-pojo-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.db2code</groupId>
<artifactId>DB2Code</artifactId>
<version>1.0</version>
<version>1.0.1</version>
</parent>

<artifactId>java-pojo-generator</artifactId>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>org.db2code</groupId>
<artifactId>core</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>org.db2code</groupId>
<artifactId>DB2Code</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<packaging>pom</packaging>
<name>D2Code - code generator from database metadata</name>
<description>Puts database metadata into intermediate objects and invokes mustache template to generate code,
Expand Down Expand Up @@ -112,6 +112,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit 9fb3e49

Please sign in to comment.