Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vzakharchenko committed Mar 8, 2020
1 parent 28beed7 commit 302d3ad
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:

- run:
name: build with examples
command: mvn clean install && mvn coveralls:report -DskipCoveralls=false -DrepoToken=${repo_token}
command: mvn clean install -Pexamples && mvn coveralls:report -DskipCoveralls=false -DrepoToken=${repo_token}
2 changes: 1 addition & 1 deletion dynamic-orm-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dynamic-orm-examples/example-test-ehcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm-examples</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dynamic-orm-examples/example-test-models/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm-examples</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dynamic-orm-examples/example-test-modify/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm-examples</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dynamic-orm-examples/example-test-qmodels/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm-examples</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dynamic-orm-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dynamic-orm-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>dynamic-orm</artifactId>
<groupId>com.github.vzakharchenko</groupId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@

<groupId>com.github.vzakharchenko</groupId>
<artifactId>dynamic-orm</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<modules>
<module>dynamic-orm-core</module>
<module>dynamic-orm-plugin</module>
<module>dynamic-orm-examples</module>
</modules>
<packaging>pom</packaging>

Expand Down Expand Up @@ -91,6 +90,12 @@
</plugins>
</build>
</profile>
<profile>
<id>examples</id>
<modules>
<module>dynamic-orm-examples</module>
</modules>
</profile>
</profiles>

<build>
Expand Down
2 changes: 0 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,3 @@ mvn -Psign clean release:perform -Darguments=-Dgpg.passphrase=${password}
git pull
hub release create -m "Dynamic Orm ${tagName}" $tagName

# update version of keycloak-radius
mvn versions:set -DnewVersion=$tagDevVersion

0 comments on commit 302d3ad

Please sign in to comment.