mirror of
https://github.com/Alfresco/alfresco-sdk.git
synced 2026-09-16 18:13:23 +00:00
git-svn-id: http://maven-alfresco-archetypes.googlecode.com/svn/trunk@669 04253f4f-3451-0410-a141-5562f1e59037
194 lines
7.1 KiB
XML
194 lines
7.1 KiB
XML
<?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>
|
|
<groupId>org.alfresco.maven</groupId>
|
|
<artifactId>alfresco-lifecycle-aggregator</artifactId>
|
|
<version>1.1-SNAPSHOT</version>
|
|
<name>Maven Alfresco SDK</name>
|
|
<description>This aggregator Project builds all modules required for the Maven Alfresco SDK</description>
|
|
<packaging>pom</packaging>
|
|
|
|
<url>${maven.site.url}</url>
|
|
|
|
<prerequisites>
|
|
<maven>3.0.3</maven>
|
|
</prerequisites>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU Lesser General Public License v3.0 or later</name>
|
|
<url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<issueManagement>
|
|
<system>GoogleCode</system>
|
|
<url>http://code.google.com/p/maven-alfresco-archetypes/issues/detail</url>
|
|
</issueManagement>
|
|
|
|
<scm>
|
|
<connection>scm:svn:${scm.url.base}/trunk</connection>
|
|
<developerConnection>scm:svn:${scm.url.base}/trunk</developerConnection>
|
|
<url>${scm.url.base}/trunk</url>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>gabriele.columbro</id>
|
|
<name>Gabriele Columbro</name>
|
|
<email>gabriele.columbro@alfresco.com</email>
|
|
<url>http://mindthegab.com</url>
|
|
<organization>Alfresco Software</organization>
|
|
<organizationUrl>http://www.alfresco.com</organizationUrl>
|
|
<timezone>+1</timezone>
|
|
<roles>
|
|
<role>Founder</role>
|
|
<role>Architect</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<id>maurizio.pillitu</id>
|
|
<name>Maurizio Pillitu</name>
|
|
<email>maurizio.pillitu@alfresco.com</email>
|
|
<url>http://session.it</url>
|
|
<organization>Alfresco Software</organization>
|
|
<organizationUrl>http://www.alfresco.com</organizationUrl>
|
|
<timezone>+1</timezone>
|
|
<roles>
|
|
<role>Architect</role>
|
|
<role>Developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Carlo Sciolla</name>
|
|
<email>carlo@backbase.com</email>
|
|
<organization>Backbase</organization>
|
|
<organizationUrl>http://www.backbase.com</organizationUrl>
|
|
<timezone>+1</timezone>
|
|
<url>http://skuro.tk</url>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<!-- All the modules of the Maven Alfresco SDK -->
|
|
<modules>
|
|
<!-- Plugins -->
|
|
<module>plugins/alfresco-maven-plugin</module>
|
|
<!-- POM files -->
|
|
<module>poms/alfresco-sdk-parent</module>
|
|
<!-- Archetypes -->
|
|
<module>archetypes/alfresco-amp-archetype</module>
|
|
<module>archetypes/alfresco-allinone-archetype</module>
|
|
</modules>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>alfresco-internal</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/releases
|
|
</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<name>alfresco snapshots repository</name>
|
|
<id>alfresco-internal-snapshots</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/snapshots
|
|
</url>
|
|
</snapshotRepository>
|
|
<site>
|
|
<id>alfresco-docs</id>
|
|
<url>dav:${maven.site.url}</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.archetype.version>2.2</maven.archetype.version>
|
|
<maven.release.version>2.4</maven.release.version>
|
|
<maven.release.goals>deploy site-deploy</maven.release.goals>
|
|
<maven.site.version>3.2</maven.site.version>
|
|
<maven.changes.version>2.8</maven.changes.version>
|
|
<maven.site.url>https://artifacts.alfresco.com/nexus/content/repositories/alfresco-docs/alfresco-lifecycle-aggregator/latest</maven.site.url>
|
|
<scm.url.base>https://maven-alfresco-archetypes.googlecode.com/svn</scm.url.base>
|
|
<scm.tag.base>${scm.url.base}/tags</scm.tag.base>
|
|
</properties>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-archetype-plugin</artifactId>
|
|
<version>${maven.archetype.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>${maven.site.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.apache.maven.archetype</groupId>
|
|
<artifactId>archetype-packaging</artifactId>
|
|
<version>${maven.archetype.version}</version>
|
|
</extension>
|
|
<extension>
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
|
<version>2.2</version>
|
|
</extension>
|
|
</extensions>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>${maven.release.version}</version>
|
|
<configuration>
|
|
<tagBase>${scm.tag.base}</tagBase>
|
|
<preparationGoals>clean install</preparationGoals>
|
|
<goals>${maven.release.goals}</goals>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-changes-plugin</artifactId>
|
|
<version>${maven.changes.version}</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>changes-report</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/groups/public
|
|
</url>
|
|
</repository>
|
|
<repository>
|
|
<id>alfresco-public-snapshots</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots
|
|
</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project>
|