Skip to content

Commit

Permalink
preparing for releaseprepare release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Jul 16, 2018
1 parent e653a80 commit 21f71db
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 29 deletions.
6 changes: 2 additions & 4 deletions mongodb-redis-integration/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?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">
<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>

<artifactId>poc-mongodb-redis-integration</artifactId>
Expand All @@ -13,7 +11,7 @@
<parent>
<groupId>com.example.poc</groupId>
<artifactId>poc-parent</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
</parent>

<properties>
Expand Down
7 changes: 2 additions & 5 deletions poc-springboot-mongodb-security/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<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.example.poc</groupId>
<artifactId>poc-parent</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
</parent>
<artifactId>poc-springboot-mongodb-security</artifactId>
<name>poc-springboot-mongodb-security</name>
Expand Down
8 changes: 3 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<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">
<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>

<groupId>com.example.poc</groupId>
<artifactId>poc-parent</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
<packaging>pom</packaging>

<name>POC by Example</name>
Expand All @@ -18,7 +16,7 @@
<connection>scm:git:git://github.com/rajadilipkolli/POC</connection>
<developerConnection>scm:git:[email protected]:rajadilipkolli/POC</developerConnection>
<url>https://github.com/rajadilipkolli/POC</url>
<tag>HEAD</tag>
<tag>v0.2.1</tag>
</scm>

<issueManagement>
Expand Down
6 changes: 2 additions & 4 deletions spring-boot-rest/poc-spring-boot-rest-application/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<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">
<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.example.poc</groupId>
<artifactId>poc-spring-boot-rest</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
</parent>
<artifactId>poc-spring-boot-rest-application</artifactId>
<description>REST API Implementation.</description>
Expand Down
6 changes: 2 additions & 4 deletions spring-boot-rest/poc-spring-boot-rest-entities/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<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">
<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.example.poc</groupId>
<artifactId>poc-spring-boot-rest</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
</parent>
<artifactId>poc-spring-boot-rest-entities</artifactId>

Expand Down
6 changes: 2 additions & 4 deletions spring-boot-rest/poc-spring-boot-rest-jooq/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<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">
<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.example.poc</groupId>
<artifactId>poc-spring-boot-rest</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
</parent>
<artifactId>poc-spring-boot-rest-jooq</artifactId>
<description>JOOQ implmentation</description>
Expand Down
5 changes: 2 additions & 3 deletions spring-boot-rest/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?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">
<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>

<artifactId>poc-spring-boot-rest</artifactId>
Expand All @@ -12,7 +11,7 @@
<parent>
<groupId>com.example.poc</groupId>
<artifactId>poc-parent</artifactId>
<version>0.2.1-SNAPSHOT</version>
<version>0.2.1</version>
</parent>

<properties>
Expand Down

0 comments on commit 21f71db

Please sign in to comment.