mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
REPO-2804 Remove sdk project
This commit is contained in:
1
pom.xml
1
pom.xml
@@ -12,7 +12,6 @@
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
<module>sdk</module>
|
||||
<module>war</module>
|
||||
<module>zip</module>
|
||||
</modules>
|
||||
|
101
sdk/pom.xml
101
sdk/pom.xml
@@ -1,101 +0,0 @@
|
||||
<?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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>alfresco-platform-distribution</artifactId>
|
||||
<name>Alfresco Community Platform Distribution descriptor</name>
|
||||
<description>This POM describes the Alfresco artifacts usable in the Maven SDK, in terms of artifacts groupId, artifactId, version</description>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<parent>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>acs-community-packaging</artifactId>
|
||||
<version>5.3-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<!-- Filtered in site so no dots allowed in property name -->
|
||||
<alfrescoEdition>Community</alfrescoEdition>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- == Repository JARs / WAR == -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-content-repository</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
<!-- Core -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-core</artifactId>
|
||||
<version>${dependency.alfresco-core.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- Data model -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-data-model</artifactId>
|
||||
<version>${dependency.alfresco-data-model.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- JLAN Embed -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-jlan-embed</artifactId>
|
||||
<version>${dependency.alfresco-jlan.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- MBeans -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-mbeans</artifactId>
|
||||
<version>${dependency.alfresco-mbeans.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- Remote API (JAR) -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-remote-api</artifactId>
|
||||
<version>${dependency.alfresco-remote-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- Remote API (JAR) -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-repository</artifactId>
|
||||
<version>${dependency.alfresco-repository.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- == Solr JARs/WAR -->
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-solr</artifactId>
|
||||
<version>${dependency.alfresco-solr.version}</version>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-solr</artifactId>
|
||||
<version>${dependency.alfresco-solr.version}</version>
|
||||
<classifier>classes</classifier>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-solr4</artifactId>
|
||||
<version>${dependency.alfresco-solr4.version}</version>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-solr4</artifactId>
|
||||
<version>${dependency.alfresco-solr4.version}</version>
|
||||
<classifier>classes</classifier>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
@@ -1,67 +0,0 @@
|
||||
------
|
||||
Alfresco ${alfrescoEdition} ${alfresco.version} platform descriptor
|
||||
------
|
||||
Gabriele Columbro
|
||||
------
|
||||
Nov 2012
|
||||
------
|
||||
|
||||
The Alfresco Platform Distribution POM ${alfrescoEdition} ${project.version}
|
||||
provides a unified descriptor and dependency management for the Maven artifacts delivered with Alfresco ${alfrescoEdition} ${project.version}.
|
||||
|
||||
By using this project as a <<<dependency>>> with <<<scope="import">>> in your project, you can centralize the {{{http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Management}dependency management}}
|
||||
on Alfresco artifacts and <<omit the version>> whenever you use Alfresco artifacts in your project.
|
||||
|
||||
For a list of the artifacts included in the Alfresco ${alfrescoEdition} ${project.version} distribution
|
||||
check the {{{./dependency-management.html}Dependency Management}} report.
|
||||
|
||||
Usage
|
||||
|
||||
You can reference the Alfresco ${alfrescoEdition} ${project.version} Platform Distribution POM in your POM adding the following snippet:
|
||||
|
||||
+---+
|
||||
|
||||
<project>
|
||||
...
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- This will import the dependencyManagement for all artifacts in the selected Alfresco plaftorm
|
||||
NOTE: You still need to define dependencies in your POM,
|
||||
but you can omit version as it's enforced by this dependencyManagement.
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>alfresco-platform-distribution</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
...
|
||||
</project>
|
||||
+---+
|
||||
|
||||
You might also need to add a reference to the {{{https://artifacts.alfresco.com} Alfresco Artifacts Repository}} to be able to
|
||||
download the POM and the referenced artifacts.
|
||||
|
||||
For <<Alfresco Community>> you can use the snippet:
|
||||
|
||||
+---+
|
||||
|
||||
<project>
|
||||
...
|
||||
<repository>
|
||||
<id>alfresco-maven-repo</id>
|
||||
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
|
||||
</repository>
|
||||
...
|
||||
</project>
|
||||
|
||||
+---+
|
||||
|
||||
For Alfresco Enterprise please check {{{https://artifacts.alfresco.com} Alfresco Artifacts Repository}} for instructions.
|
||||
|
||||
* Examples / archetypes
|
||||
|
||||
Examples of usage of this POM can be found in the {{{https://artifacts.alfresco.com/nexus/content/repositories/alfresco-docs/alfresco-lifecycle-aggregator/latest/index.html} Maven Alfresco SDK\x99}}.
|
@@ -1,47 +0,0 @@
|
||||
<project>
|
||||
<skin>
|
||||
<groupId>org.apache.maven.skins</groupId>
|
||||
<artifactId>maven-fluido-skin</artifactId>
|
||||
<version>1.3.0</version>
|
||||
</skin>
|
||||
<custom>
|
||||
<fluidoSkin>
|
||||
<topBarIcon>
|
||||
<name>Alfresco Software</name>
|
||||
<alt>Alfresco Software</alt>
|
||||
<src>http://people.apache.org/~gabriele/Alfresco-logo-transparent-thin.png</src>
|
||||
<href>http://www.alfresco.com</href>
|
||||
</topBarIcon>
|
||||
<topBarEnabled>true</topBarEnabled>
|
||||
<navBarStyle>navbar-inverse</navBarStyle>
|
||||
<sideBarEnabled>false</sideBarEnabled>
|
||||
<facebookLike />
|
||||
<googlePlusOne />
|
||||
<googleSearch>
|
||||
<sitesearch/>
|
||||
</googleSearch>
|
||||
<sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
|
||||
</fluidoSkin>
|
||||
</custom>
|
||||
|
||||
<poweredBy>
|
||||
<logo name="Maven" href="http://maven.apache.org" img="http://maven.apache.org/images/logos/maven-feather.png" />
|
||||
</poweredBy>
|
||||
|
||||
<publishDate position="navigation-bottom" format="MM-dd-yy" />
|
||||
|
||||
<body>
|
||||
|
||||
<menu name="Alfresco Platform Distribution">
|
||||
<item name="Introduction" href="index.html"/>
|
||||
<item name="Maven Dependency Import" href="http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Management"/>
|
||||
</menu>
|
||||
|
||||
<menu name="Maven Alfresco SDK">
|
||||
<item name="Home" href="https://artifacts.alfresco.com/nexus/content/repositories/alfresco-docs/alfresco-lifecycle-aggregator/latest/index.html" />
|
||||
</menu>
|
||||
|
||||
<menu ref="reports" />
|
||||
|
||||
</body>
|
||||
</project>
|
Reference in New Issue
Block a user