Skip to content

Commit

Permalink
Merge pull request #58 from mishmash-io/publish-internal-code
Browse files Browse the repository at this point in the history
Refactor build
  • Loading branch information
arusevm authored Jan 7, 2025
2 parents d561074 + e3e899b commit 43005a0
Show file tree
Hide file tree
Showing 54 changed files with 2,620 additions and 319 deletions.
16 changes: 8 additions & 8 deletions hadoop/stable-base/pom.xml → data/blocks-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.mishmash.apache</groupId>
<artifactId>mmio-for-apache-parent</artifactId>
<groupId>io.mishmash.stacks</groupId>
<artifactId>distributed-computing-stacks</artifactId>
<version>0.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-base</artifactId>
<version>${hadoop.stable.version}-mmio.${hadoop.stable.mishmash.io.patch}</version>
<packaging>jar</packaging>

Expand Down Expand Up @@ -83,8 +83,8 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
Expand Down Expand Up @@ -231,8 +231,8 @@
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>jar</type>
<classifier>sources</classifier>
Expand Down
20 changes: 10 additions & 10 deletions hadoop/stable-base-cli/pom.xml → data/blocks-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.mishmash.apache</groupId>
<artifactId>mmio-for-apache-parent</artifactId>
<groupId>io.mishmash.stacks</groupId>
<artifactId>distributed-computing-stacks</artifactId>
<version>0.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base-cli</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-cli</artifactId>
<version>${hadoop.stable.version}-mmio.${hadoop.stable.mishmash.io.patch}</version>
<packaging>jar</packaging>

Expand Down Expand Up @@ -83,8 +83,8 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
Expand All @@ -94,8 +94,8 @@

<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand All @@ -119,8 +119,8 @@
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>jar</type>
<classifier>sources</classifier>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.mishmash.apache</groupId>
<artifactId>mmio-for-apache-parent</artifactId>
<groupId>io.mishmash.stacks</groupId>
<artifactId>distributed-computing-stacks</artifactId>
<version>0.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base-ha</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-high-availability</artifactId>
<version>${hadoop.stable.version}-mmio.${hadoop.stable.mishmash.io.patch}</version>
<packaging>jar</packaging>

Expand Down Expand Up @@ -83,8 +83,8 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
Expand All @@ -94,13 +94,13 @@

<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.mishmash.apache.zookeeper</groupId>
<artifactId>mmio-zookeeper-stable-client</artifactId>
<groupId>io.mishmash.stacks.quorum</groupId>
<artifactId>quorum-client</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
Expand Down Expand Up @@ -131,8 +131,8 @@
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>jar</type>
<classifier>sources</classifier>
Expand Down
24 changes: 12 additions & 12 deletions hadoop/stable-base-http/pom.xml → data/blocks-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.mishmash.apache</groupId>
<artifactId>mmio-for-apache-parent</artifactId>
<groupId>io.mishmash.stacks</groupId>
<artifactId>distributed-computing-stacks</artifactId>
<version>0.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base-http</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-http</artifactId>
<version>${hadoop.stable.version}-mmio.${hadoop.stable.mishmash.io.patch}</version>
<packaging>jar</packaging>

Expand Down Expand Up @@ -83,8 +83,8 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
Expand All @@ -94,13 +94,13 @@

<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base-ha</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-high-availability</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down Expand Up @@ -166,8 +166,8 @@
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>jar</type>
<classifier>sources</classifier>
Expand Down
20 changes: 10 additions & 10 deletions hadoop/stable-fs-sftp/pom.xml → fs/fs-sftp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.mishmash.apache</groupId>
<artifactId>mmio-for-apache-parent</artifactId>
<groupId>io.mishmash.stacks</groupId>
<artifactId>distributed-computing-stacks</artifactId>
<version>0.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-fs-sftp</artifactId>
<groupId>io.mishmash.stacks.fs</groupId>
<artifactId>fs-sftp</artifactId>
<version>${hadoop.stable.version}-mmio.${hadoop.stable.mishmash.io.patch}</version>
<packaging>jar</packaging>

Expand Down Expand Up @@ -83,8 +83,8 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
Expand All @@ -94,8 +94,8 @@

<dependencies>
<dependency>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable-base</artifactId>
<groupId>io.mishmash.stacks.data</groupId>
<artifactId>blocks-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand All @@ -119,8 +119,8 @@
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.mishmash.apache.hadoop</groupId>
<artifactId>stable</artifactId>
<groupId>io.mishmash.stacks.patches</groupId>
<artifactId>hadoop-patches</artifactId>
<version>${project.version}</version>
<type>jar</type>
<classifier>sources</classifier>
Expand Down
112 changes: 112 additions & 0 deletions misc/openid/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2025 Mishmash IO UK Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.mishmash.stacks</groupId>
<artifactId>distributed-computing-stacks</artifactId>
<version>0.0.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<groupId>io.mishmash.stacks.misc</groupId>
<artifactId>openid</artifactId>
<version>1.0.0</version>

<name>OpenID Connect and UMA tools for SASL authentication and authorization</name>
<description>
Utilities for OpenID Connect and UMA (User-Managed Access) integration into Java.

Includes an OAUTHBEARER SASL (Simple Authentication and Security Layer) client and
server modules to facilitate machine-to-machine authorization on public and private
clouds.
</description>
<url>https://mishmash.io/open_source</url>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<organization>
<name>mishmash io</name>
<url>https://mishmash.io</url>
</organization>

<scm>
<connection>scm:git:https://github.com/mishmash-io/for-apache.git</connection>
<developerConnection>scm:git:https://github.com/mishmash-io/for-apache.git</developerConnection>
<url>https://github.com/mishmash-io/for-apache</url>
</scm>

<developers>
<developer>
<name>Ivan Kountchev</name>
<email>[email protected]</email>
<organization>mishmash io</organization>
<organizationUrl>https://mishmash.io</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Andrey Rusev</name>
<email>[email protected]</email>
<url>www.linkedin.com/in/andrey-rusev-21894172</url>
<organization>mishmash io</organization>
<organizationUrl>https://mishmash.io</organizationUrl>
<roles>
<role>architect</role>
</roles>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 43005a0

Please sign in to comment.