Skip to content

Commit

Permalink
Merge pull request #2 from cognitree/distribution
Browse files Browse the repository at this point in the history
Upgrade version to 2.2.4. Remove shell handler as it will be part of main Kronos repo.
  • Loading branch information
girishkarthik authored Jun 13, 2019
2 parents 084e371 + ca3f955 commit 237c2ca
Show file tree
Hide file tree
Showing 12 changed files with 108 additions and 165 deletions.
82 changes: 82 additions & 0 deletions distribution/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?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.cognitree.kronos.extensions</groupId>
<artifactId>kronos-extensions</artifactId>
<version>2.2.4</version>
</parent>

<artifactId>distribution</artifactId>

<packaging>pom</packaging>

<!-- NOTE: These dependency declarations are only required to sort this project to the
end of the line in the multimodule build.
Since we only include the child1 module in our assembly, we only need to ensure this
distribution project builds AFTER that one...
-->
<dependencies>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>embedded-hsql-store</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>helm-handler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>jdbc-store</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>kafka-message-handler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>kafka-queue</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>mongo-store</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.cognitree.kronos.extensions</groupId>
<artifactId>spark-handler</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
32 changes: 17 additions & 15 deletions shell-handler/pom.xml → distribution/src/assembly/bin.xml
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
Expand All @@ -16,17 +15,20 @@
~ limitations under the License.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>shell-handler</artifactId>

</project>
<assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>dist</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<dependencySets>
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<scope>runtime</scope>
<useTransitiveDependencies>true</useTransitiveDependencies>
<useTransitiveFiltering>true</useTransitiveFiltering>
</dependencySet>
</dependencySets>
</assembly>
3 changes: 1 addition & 2 deletions embedded-hsql-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>embedded-hsql-store</artifactId>
<version>2.2.4-RC2</version>

<properties>
<hsqldb.version>2.4.1</hsqldb.version>
Expand Down
2 changes: 1 addition & 1 deletion helm-handler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jdbc-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion kafka-message-handler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion kafka-queue/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion mongo-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<name>kronos-extensions</name>
<artifactId>kronos-extensions</artifactId>
<packaging>pom</packaging>
<version>2.0.1</version>
<version>2.2.4</version>

<properties>
<kronos.version>2.2.4-RC2</kronos.version>
Expand All @@ -41,13 +41,13 @@

<modules>
<module>kafka-queue</module>
<module>shell-handler</module>
<module>jdbc-store</module>
<module>spark-handler</module>
<module>embedded-hsql-store</module>
<module>mongo-store</module>
<module>helm-handler</module>
<module>kafka-message-handler</module>
<module>distribution</module>
</modules>

<dependencies>
Expand Down
42 changes: 0 additions & 42 deletions shell-handler/README.md

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion spark-handler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>kronos-extensions</artifactId>
<groupId>com.cognitree.kronos.extensions</groupId>
<version>2.0.1</version>
<version>2.2.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 237c2ca

Please sign in to comment.