Skip to content

Commit

Permalink
#36,#37,#38 add new back-end modules
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir.bukhtoyarov committed Aug 9, 2017
1 parent df56b39 commit dc01987
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 3 deletions.
18 changes: 18 additions & 0 deletions bucket4j-mysql/pom.xml
@@ -0,0 +1,18 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-parent</artifactId>
<version>2.2.0</version>
<relativePath>../bucket4j-parent</relativePath>
</parent>

<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-mysql</artifactId>
<version>2.2.0</version>

</project>
2 changes: 1 addition & 1 deletion bucket4j-parent/pom.xml
Expand Up @@ -21,7 +21,7 @@

<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-parent</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<packaging>pom</packaging>

<name>bucket4-parent</name>
Expand Down
19 changes: 19 additions & 0 deletions bucket4j-postgresql/pom.xml
@@ -0,0 +1,19 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-parent</artifactId>
<version>2.2.0</version>
<relativePath>../bucket4j-parent</relativePath>
</parent>

<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-postgresql</artifactId>
<version>2.2.0</version>


</project>
18 changes: 18 additions & 0 deletions bucket4j-redis/pom.xml
@@ -0,0 +1,18 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-parent</artifactId>
<version>2.2.0</version>
<relativePath>../bucket4j-parent</relativePath>
</parent>

<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j-redis</artifactId>
<version>2.2.0</version>

</project>
8 changes: 7 additions & 1 deletion pom.xml
Expand Up @@ -20,11 +20,17 @@

<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>bucket4j</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<modules>
<module>bucket4j-parent</module>
<module>bucket4j-core</module>
<module>bucket4j-jcache</module>
<module>bucket4j-hazelcast</module>
<module>bucket4j-ignite</module>
<module>bucket4j-infinispan</module>
<module>bucket4j-redis</module>
<module>bucket4j-mysql</module>
<module>bucket4j-postgresql</module>
<!--<module>bucket4j-benchmarks</module>-->
</modules>
<packaging>pom</packaging>
Expand Down
5 changes: 4 additions & 1 deletion release-reactor/pom.xml
Expand Up @@ -24,7 +24,7 @@

<groupId>com.github.vladimir-bukhtoyarov</groupId>
<artifactId>release-reactor</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<packaging>pom</packaging>

<properties>
Expand All @@ -35,6 +35,9 @@
<module>../bucket4j-parent</module>
<module>../bucket4j-core</module>
<module>../bucket4j-jcache</module>
<module>../bucket4j-hazelcast</module>
<module>../bucket4j-ignite</module>
<module>../bucket4j-infinispan</module>
</modules>

</project>

0 comments on commit dc01987

Please sign in to comment.