mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-17 14:21:39 +00:00
REPO-5358 Deployment modules should extend each other
The alfresco-community-repo's deployment module now provides the basis for alfresco-enterprise-repo and acs-packaging
deployment modules. This makes it like the other branches and avoids duplication of licenses between projects.
(partial picked from commit 80f04dc916
)
This commit is contained in:
14
packaging/distribution/pom.xml
Normal file
14
packaging/distribution/pom.xml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?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>
|
||||||
|
<groupId>org.alfresco</groupId>
|
||||||
|
<artifactId>alfresco-community-repo-distribution</artifactId>
|
||||||
|
<name>Package Licences and Keystore for Distribution</name>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.alfresco</groupId>
|
||||||
|
<artifactId>alfresco-community-repo-packaging</artifactId>
|
||||||
|
<version>6.56.15.300-TEST2-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
</project>
|
@@ -7,6 +7,7 @@ ARG resource_path=target
|
|||||||
|
|
||||||
# Create prerequisite to store tools and properties
|
# Create prerequisite to store tools and properties
|
||||||
RUN mkdir -p /usr/local/tomcat/shared/classes/alfresco/extension && \
|
RUN mkdir -p /usr/local/tomcat/shared/classes/alfresco/extension && \
|
||||||
|
mkdir /licenses && \
|
||||||
mkdir /usr/local/tomcat/alfresco-mmt
|
mkdir /usr/local/tomcat/alfresco-mmt
|
||||||
RUN touch /usr/local/tomcat/shared/classes/alfresco-global.properties
|
RUN touch /usr/local/tomcat/shared/classes/alfresco-global.properties
|
||||||
|
|
||||||
@@ -14,13 +15,11 @@ RUN touch /usr/local/tomcat/shared/classes/alfresco-global.properties
|
|||||||
# Copy the WAR files to the appropriate location for your application server
|
# Copy the WAR files to the appropriate location for your application server
|
||||||
# Copy the JDBC drivers for the database you are using to the lib/ directory.
|
# Copy the JDBC drivers for the database you are using to the lib/ directory.
|
||||||
# Copy the alfresco-mmt.jar
|
# Copy the alfresco-mmt.jar
|
||||||
|
# Copy Licenses to the root of the Docker image
|
||||||
COPY ${resource_path}/war /usr/local/tomcat/webapps
|
COPY ${resource_path}/war /usr/local/tomcat/webapps
|
||||||
COPY ${resource_path}/connector/* /usr/local/tomcat/lib/
|
COPY ${resource_path}/connector/* /usr/local/tomcat/lib/
|
||||||
COPY ${resource_path}/alfresco-mmt/* /usr/local/tomcat/alfresco-mmt/
|
COPY ${resource_path}/alfresco-mmt/* /usr/local/tomcat/alfresco-mmt/
|
||||||
|
COPY ${resource_path}/dependency/licenses/ /licenses/
|
||||||
# Copy Licenses to the root of the Docker image
|
|
||||||
RUN mkdir /licenses
|
|
||||||
COPY ${resource_path}/licenses/ /licenses/
|
|
||||||
|
|
||||||
# Change the value of the shared.loader= property to the following:
|
# Change the value of the shared.loader= property to the following:
|
||||||
# shared.loader=${catalina.base}/shared/classes
|
# shared.loader=${catalina.base}/shared/classes
|
||||||
|
@@ -16,29 +16,6 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>copy-licenses</id>
|
|
||||||
<phase>process-resources</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>copy-resources</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<!-- Extract licenses directory -->
|
|
||||||
<directory>../distribution/src/main/resources/licenses</directory>
|
|
||||||
<filtering>false</filtering>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
<outputDirectory>${project.build.directory}/licenses</outputDirectory>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
@@ -126,6 +103,24 @@
|
|||||||
</artifactItems>
|
</artifactItems>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
|
||||||
|
<execution>
|
||||||
|
<id>unpack-licenses</id>
|
||||||
|
<phase>process-resources</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>unpack</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<artifactItems>
|
||||||
|
<artifactItem>
|
||||||
|
<groupId>org.alfresco</groupId>
|
||||||
|
<artifactId>alfresco-community-repo-distribution</artifactId>
|
||||||
|
<type>jar</type>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</artifactItem>
|
||||||
|
</artifactItems>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
@@ -18,6 +18,7 @@
|
|||||||
</activation>
|
</activation>
|
||||||
<modules>
|
<modules>
|
||||||
<module>war</module>
|
<module>war</module>
|
||||||
|
<module>distribution</module>
|
||||||
<module>docker-alfresco</module>
|
<module>docker-alfresco</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
@@ -25,18 +26,21 @@
|
|||||||
<id>community</id>
|
<id>community</id>
|
||||||
<modules>
|
<modules>
|
||||||
<module>war</module>
|
<module>war</module>
|
||||||
|
<module>distribution</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>communityDocker</id>
|
<id>communityDocker</id>
|
||||||
<modules>
|
<modules>
|
||||||
<module>war</module>
|
<module>war</module>
|
||||||
|
<module>distribution</module>
|
||||||
<module>docker-alfresco</module>
|
<module>docker-alfresco</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>all-tas-tests</id>
|
<id>all-tas-tests</id>
|
||||||
<modules>
|
<modules>
|
||||||
|
<module>distribution</module>
|
||||||
<module>tests</module>
|
<module>tests</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
|
Reference in New Issue
Block a user