Changes for site git migration
This commit is contained in:
parent
c76ced02e7
commit
91c147513f
|
@ -0,0 +1,28 @@
|
|||
#!/bin/bash
|
||||
|
||||
MP="$1"
|
||||
PL=$(echo "$MP" | sed -e 's#/# #g' -e 's/^\.//g')
|
||||
|
||||
echo "$PL"
|
||||
STR="project"
|
||||
|
||||
if [ -f "${MP}/pom.xml" ]; then
|
||||
for DIR in $PL; do
|
||||
STR="${STR}.parent"
|
||||
done
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "$MP $PL"
|
||||
grep -q '<properties>' $MP/pom.xml
|
||||
if [ $? -eq 0 ]; then
|
||||
sed -i -e 's#<properties>#<properties>\n <site.staging.base>${'${STR}'.basedir}</site.staging.base>#g' $MP/pom.xml
|
||||
else
|
||||
grep -q '<packaging>' $MP/pom.xml
|
||||
if [ $? -eq 0 ]; then
|
||||
sed -i -e 's#\(.*</packaging>.*\)#\1\n <properties>\n <site.staging.base>${'${STR}'.basedir}</site.staging.base>\n </properties>#g' $MP/pom.xml
|
||||
else
|
||||
sed -i -e 's#\(.*</name>.*\)#\1\n <properties>\n <site.staging.base>${'${STR}'.basedir}</site.staging.base>\n </properties>#g' $MP/pom.xml
|
||||
fi
|
||||
fi
|
|
@ -0,0 +1,135 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# Author: Martin Stockhammer <martin_s@apache.org>
|
||||
# Date: 2018-11-03
|
||||
#
|
||||
# This script runs a sparse git clone of a remote repository and
|
||||
# initializes the git configuration.
|
||||
#
|
||||
# It is mainly used for site content creation, because the main archiva-web-content repository
|
||||
# is rather large and we don't want to checkout the complete data.
|
||||
#
|
||||
|
||||
SITE_DIR=".site-content"
|
||||
GIT_REMOTE=""
|
||||
|
||||
GIT_USER=$(git config user.name)
|
||||
GIT_EMAIL=$(git config user.email)
|
||||
|
||||
GIT_PATTERN_FILE="git-sparse-checkout-pattern"
|
||||
GIT_PATTERN_DEST=".git/info/sparse-checkout"
|
||||
|
||||
MY_PWD=$(pwd)
|
||||
|
||||
CLONE=1
|
||||
FORCE=1
|
||||
MODULE_DIR="${MY_PWD}"
|
||||
PATTERN=""
|
||||
while [ ! -z "$1" ]; do
|
||||
case "$1" in
|
||||
-f)
|
||||
FORCE=0
|
||||
shift
|
||||
;;
|
||||
-d)
|
||||
shift
|
||||
SITE_DIR="$1"
|
||||
shift
|
||||
;;
|
||||
-p)
|
||||
shift
|
||||
if [ -z "${PATTERN}" ]; then
|
||||
PATTERN="${1}"
|
||||
else
|
||||
PATTERN="${PATTERN}\n${1}"
|
||||
fi
|
||||
shift
|
||||
;;
|
||||
-m)
|
||||
shift
|
||||
MODULE_DIR="$1"
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
GIT_REMOTE="$1"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
print_usage() {
|
||||
echo "checkoutRepo [-m MODULE_DIR] [-d SITE_DIR] [-f] GIT_URL"
|
||||
echo " -m: The module directory where the pattern file can be found and the site dir will be created."
|
||||
echo " -d SITE_DIR: Use the given directory for checkout"
|
||||
echo " -f: Force clone, even if directory exists"
|
||||
}
|
||||
|
||||
if [ ! -f "${MODULE_DIR}/pom.xml" ]; then
|
||||
echo "Looks like the working directory is not a valid dir. No pom.xml found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd "${MODULE_DIR}" || { echo "Could not change to module directory ${MODULE_DIR}"; exit 1; }
|
||||
|
||||
if [ -z "$GIT_REMOTE" ]; then
|
||||
print_usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "${GIT_REMOTE:0:8}" == "scm:git:" ]; then
|
||||
GIT_REMOTE="${GIT_REMOTE:8}"
|
||||
fi
|
||||
|
||||
|
||||
if [ -d "${SITE_DIR}" ]; then
|
||||
if [ ! -d "${SITE_DIR}/.git" ]; then
|
||||
echo "Directory ${SITE_DIR} exist already, but is not a git clone. Aborting."
|
||||
exit 1
|
||||
elif [ "$FORCE" -eq 0 ]; then
|
||||
CLONE=0
|
||||
fi
|
||||
else
|
||||
CLONE=0
|
||||
fi
|
||||
|
||||
if [ $CLONE -eq 0 ]; then
|
||||
git clone "${GIT_REMOTE}" "${SITE_DIR}" --no-checkout
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Git clone failed"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
cd "${SITE_DIR}" || { echo "Could not change to site dir ${SITE_DIR}"; exit 1; }
|
||||
|
||||
git config core.sparsecheckout true
|
||||
git config user.name "${GIT_USER}"
|
||||
git config user.email "${GIT_EMAIL}"
|
||||
|
||||
if [ ! -z "${PATTERN}" ]; then
|
||||
echo -e "${PATTERN}" >"${GIT_PATTERN_DEST}"
|
||||
elif [ -f "../${GIT_PATTERN_FILE}" ]; then
|
||||
cp "../${GIT_PATTERN_FILE}" "${GIT_PATTERN_DEST}"
|
||||
fi
|
||||
|
||||
git checkout --
|
||||
|
||||
cd "${MY_PWD}"
|
||||
|
|
@ -0,0 +1 @@
|
|||
/redback/core
|
93
pom.xml
93
pom.xml
|
@ -66,11 +66,12 @@
|
|||
<distributionManagement>
|
||||
<site>
|
||||
<id>apache.website</id>
|
||||
<url>file://${siteDeployDirectory}</url>
|
||||
<url>${siteRepositoryUrl}</url>
|
||||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<properties>
|
||||
<site.staging.base>${project.basedir}</site.staging.base>
|
||||
<springVersion>4.3.10.RELEASE</springVersion>
|
||||
<slf4jVersion>1.7.25</slf4jVersion>
|
||||
<log4j2Version>2.8.2</log4j2Version>
|
||||
|
@ -87,10 +88,15 @@
|
|||
-->
|
||||
<redbackTestJdbcUrl>jdbc:hsqldb:mem:redback-test</redbackTestJdbcUrl>
|
||||
<redbackTestJdbcDriver>org.hsqldb.jdbcDriver</redbackTestJdbcDriver>
|
||||
<siteDeployDirectory>${user.home}/archiva-sites/redback-core-site-deploy</siteDeployDirectory>
|
||||
<scmPubCheckoutDirectory>${basedir}/.site-content</scmPubCheckoutDirectory>
|
||||
|
||||
|
||||
<openjpa.Log>DefaultLevel=INFO,Runtime=ERROR,Tool=ERROR,SQL=ERROR,Schema=ERROR,MetaData=ERROR</openjpa.Log>
|
||||
|
||||
<scmPubCheckoutDirectory>${basedir}/.site-content</scmPubCheckoutDirectory>
|
||||
<!-- The git repository, where the site content is placed -->
|
||||
<siteRepositoryUrl>scm:git:https://gitbox.apache.org/repos/asf/archiva-web-content-INVALID.git</siteRepositoryUrl>
|
||||
|
||||
<site.staging.base>${project.basedir}</site.staging.base>
|
||||
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
|
@ -659,7 +665,7 @@
|
|||
<useJava5>false</useJava5>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- <plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||
<configuration>
|
||||
|
@ -668,7 +674,7 @@
|
|||
<tryUpdate>true</tryUpdate>
|
||||
<pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/archiva/site-content/redback/core</pubScmUrl>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugin>-->
|
||||
<plugin>
|
||||
<groupId>org.apache.openjpa</groupId>
|
||||
<artifactId>openjpa-maven-plugin</artifactId>
|
||||
|
@ -677,6 +683,67 @@
|
|||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<configuration>
|
||||
<checkinComment>Apache Archiva versioned module docs for ${project.version}</checkinComment>
|
||||
<skipDeletedFiles>true</skipDeletedFiles>
|
||||
<content>${project.build.directory}/staging/</content>
|
||||
<tryUpdate>true</tryUpdate>
|
||||
<!--
|
||||
<ignorePathsToDelete>
|
||||
<path>%regex[^(?!docs/).*$]</path>
|
||||
</ignorePathsToDelete>
|
||||
-->
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>scm-publish</id>
|
||||
<phase>site-deploy</phase>
|
||||
<goals>
|
||||
<goal>publish-scm</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<inherited>false</inherited>
|
||||
<configuration>
|
||||
<skipDeploy>true</skipDeploy>
|
||||
<stagingDirectory>${site.staging.base}/target/staging/redback/core/</stagingDirectory>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-descriptor</id>
|
||||
<goals>
|
||||
<goal>attach-descriptor</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<!--
|
||||
<execution>
|
||||
<id>site-generate-resources</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>site</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
-->
|
||||
<execution>
|
||||
<id>stage-for-scm-publish</id>
|
||||
<phase>post-site</phase>
|
||||
<goals>
|
||||
<goal>stage</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<skipDeploy>false</skipDeploy>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
|
@ -789,7 +856,17 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||
<version>${maven-project-info-reports-plugin.version}</version>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>index</report>
|
||||
<report>team</report>
|
||||
<report>licenses</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
<!--
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
|
@ -826,6 +903,7 @@
|
|||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
|
@ -839,12 +917,15 @@
|
|||
<reportSets>
|
||||
<reportSet>
|
||||
<id>aggregate</id>
|
||||
<inherited>false</inherited>
|
||||
<reports>
|
||||
<report>aggregate</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-authentication</artifactId>
|
||||
<name>Redback :: Authentication</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.archiva.redback</groupId>
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
|
||||
<artifactId>redback-authentication-api</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authentication API</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-authentication-providers</artifactId>
|
||||
<name>Redback :: Authentication Providers</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-authentication-open</module>
|
||||
<module>redback-authentication-memory</module>
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<name>Redback :: Authentication Provider :: Ldap</name>
|
||||
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
<apacheds.version>1.5.1</apacheds.version>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-authentication-memory</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authentication Provider :: Memory</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-authentication-open</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authentication Provider :: Open</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-authentication-users</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authentication Provider :: Users</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-authorization</artifactId>
|
||||
<name>Redback :: Authorization</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.archiva.redback</groupId>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-authorization-api</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authorization API</name>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-authorization-providers</artifactId>
|
||||
<name>Redback :: Authorization Providers</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-authorization-rbac</module>
|
||||
<module>redback-authorization-open</module>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-authorization-open</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authorization Provider :: Open</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-authorization-rbac</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authorization Provider :: RBAC</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
<artifactId>redback-common</artifactId>
|
||||
<name>Redback :: Commons</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-common-ldap</module>
|
||||
<module>redback-common-test-resources</module>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-common-jpa</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: JPA Common Package</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-common-ldap</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Ldap Common API</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,5 +27,8 @@
|
|||
|
||||
<artifactId>redback-common-test-resources</artifactId>
|
||||
<name>Redback :: Common TestResources</name>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-configuration</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Configuration</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-data-management</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Data Management Utilities</name>
|
||||
<description>Back up, restore and upgrade utilities for JDO databases using XML</description>
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<name>Redback :: Karaf Features</name>
|
||||
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
<javax-inject.bundle.version>1_2</javax-inject.bundle.version>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-integrations</artifactId>
|
||||
<name>Redback :: Integrations</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-common-integrations</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Integration :: Common</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-integrations-security</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Integration :: Security</name>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
<groupId>org.apache.archiva.redback</groupId>
|
||||
<artifactId>redback-rest</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Integration :: REST</name>
|
||||
|
||||
<modules>
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
<name>Redback :: Integration :: REST :: Api</name>
|
||||
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
<enunciate.docsDir>${project.build.outputDirectory}/rest-docs-redback-rest-api</enunciate.docsDir>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<name>Redback :: Integration :: REST :: Services</name>
|
||||
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
<jetty.version>9.4.5.v20170502</jetty.version>
|
||||
<rest.test.timeout>1000000</rest.test.timeout>
|
||||
</properties>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-keys</artifactId>
|
||||
<name>Redback :: Key Management</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-keys-api</module>
|
||||
<module>redback-keys-providers</module>
|
||||
|
|
|
@ -30,6 +30,9 @@
|
|||
|
||||
<artifactId>redback-authentication-keys</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Authentication Provider :: Keys</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-keys-api</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Key Management API</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-keys-providers</artifactId>
|
||||
<name>Redback :: Key Management Providers</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-keys-jpa</module>
|
||||
<module>redback-keys-memory</module>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-keys-cached</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Key Management Provider :: Cached</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-keys-jpa</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Key Management Provider :: JPA</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-keys-memory</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Key Management Provider :: Memory</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-keys-tests</artifactId>
|
||||
<name>Redback :: Key Management Test Harness</name>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.archiva.redback</groupId>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-policy</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Policy</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-rbac</artifactId>
|
||||
<name>Redback :: Role Based Access Control</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-rbac-model</module>
|
||||
<module>redback-rbac-providers</module>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-rbac-model</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: RBAC Model</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-rbac-providers</artifactId>
|
||||
<name>Redback :: RBAC Providers</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-rbac-jpa</module>
|
||||
<module>redback-rbac-memory</module>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-rbac-cached</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: RBAC Provider :: Cached</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-rbac-jpa</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: RBAC Provider :: JPA</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-rbac-ldap</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: RBAC Provider :: Ldap</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-rbac-memory</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: RBAC Provider :: Memory</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-rbac-role-manager</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: RBAC Role Manager</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
</parent>
|
||||
<artifactId>redback-rbac-tests</artifactId>
|
||||
<name>Redback :: RBAC Test Framework</name>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.archiva.redback</groupId>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-system</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Core System</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-users</artifactId>
|
||||
<name>Redback :: User Management</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>redback-users-api</module>
|
||||
<module>redback-users-providers</module>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-users-api</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: User Management API</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
<artifactId>redback-users-providers</artifactId>
|
||||
<name>Redback :: Users Providers</name>
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.archiva.redback</groupId>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-users-cached</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Users Provider :: Cached</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-users-configurable</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Users Provider :: Configurable</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-users-jpa</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Users Provider :: JPA</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-users-ldap</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Users Provider :: LDAP</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -29,6 +29,9 @@
|
|||
|
||||
<artifactId>redback-users-memory</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
<name>Redback :: Users Provider :: Memory</name>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
</parent>
|
||||
<artifactId>redback-users-tests</artifactId>
|
||||
<name>Redback :: User Tests</name>
|
||||
<properties>
|
||||
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue