This is an automated email from the ASF dual-hosted git repository. amichair pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/aries-rsa.git
commit a301e348fdf1a78e7648847e46d1fb8460397c59 Author: Amichai Rothman <[email protected]> AuthorDate: Sun Mar 22 15:02:19 2026 +0200 Remove repository module --- pom.xml | 1 - repository/pom.xml | 87 ------------------------------------------------------ 2 files changed, 88 deletions(-) diff --git a/pom.xml b/pom.xml index 426e286a..108f9cc7 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,6 @@ <module>provider</module> <module>discovery</module> <module>examples</module> - <module>repository</module> <module>features</module> <module>itests</module> </modules> diff --git a/repository/pom.xml b/repository/pom.xml deleted file mode 100644 index 8d1abcec..00000000 --- a/repository/pom.xml +++ /dev/null @@ -1,87 +0,0 @@ -<?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 this work for additional information - regarding copyright ownership. The ASF licenses this file - to you 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.aries.rsa</groupId> - <artifactId>org.apache.aries.rsa.parent</artifactId> - <version>2.0.0-SNAPSHOT</version> - <relativePath>../parent/pom.xml</relativePath> - </parent> - <artifactId>repository</artifactId> - <packaging>pom</packaging> - <name>Aries Remote Service Admin Repository</name> - <dependencies> - <dependency> - <groupId>org.apache.aries.rsa</groupId> - <artifactId>org.apache.aries.rsa.core</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa</groupId> - <artifactId>org.apache.aries.rsa.spi</artifactId> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa</groupId> - <artifactId>org.apache.aries.rsa.topology-manager</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.provider</groupId> - <artifactId>org.apache.aries.rsa.provider.tcp</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.discovery</groupId> - <artifactId>org.apache.aries.rsa.discovery.local</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.discovery</groupId> - <artifactId>org.apache.aries.rsa.discovery.zookeeper</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.discovery</groupId> - <artifactId>org.apache.aries.rsa.discovery.config</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.discovery</groupId> - <artifactId>org.apache.aries.rsa.discovery.command</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.examples.echotcp</groupId> - <artifactId>org.apache.aries.rsa.examples.echotcp.service</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.aries.rsa.examples.echotcp</groupId> - <artifactId>org.apache.aries.rsa.examples.echotcp.consumer</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.ops4j.pax.logging</groupId> - <artifactId>pax-logging-service</artifactId> - <version>1.11.17</version> - </dependency> - </dependencies> -</project>
