added maven-alfresco-lifecycle 1.0.0 super pom using maven calm, refactored repositories urls and dependencies

git-svn-id: http://maven-alfresco-archetypes.googlecode.com/svn/trunk@209 04253f4f-3451-0410-a141-5562f1e59037
This commit is contained in:
mindthegab
2009-11-05 22:00:36 +00:00
parent ac80da2ebf
commit f0e85330eb
42 changed files with 5412 additions and 523 deletions

View File

@@ -1,15 +1,16 @@
<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">
<parent>
<artifactId>maven-plugins</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.alfresco.maven.plugin</groupId>
<artifactId>maven-amp-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Alfresco AMP Plugin</name>
<version>3.0.1-SNAPSHOT</version>
<parent>
<groupId>org.alfresco</groupId>
<artifactId>maven-alfresco-lifecycle</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<description>
This plugin defines a lifecycle for Alfresco ECM Modules packaging (.amp), handles AMP transitive dependencies from AMP and WAR projects,
providing a more enterprise oriented support alternative to the Alfresco MMT (module management tool) usage. It is used by
@@ -17,18 +18,8 @@
AMPs and WARs. It is a modification of the org.apache.maven.plugins:maven-war-plugin of which it uses the whole core infrastructure. See
${site.url} for more info
</description>
<url>${site.url}</url>
<prerequisites>
<maven>2.0.8</maven>
</prerequisites>
<issueManagement>
<system>GForge</system>
<url>https://forge.alfresco.com/tracker/?group_id=121</url>
</issueManagement>
<url>${project.artifactId}</url>
<properties>
<svn.url>https://maven-alfresco-archetypes.googlecode.com/svn/trunk/plugins/maven-amp-plugin</svn.url>
<svn.tags.url>https://maven-alfresco-archetypes.googlecode.com/svn/tags</svn.tags.url>
<site.url>https://repository.sourcesense.com/maven2-sites/${pom.artifactId}</site.url>
<site_pom_description>${pom.description}</site_pom_description>
<site_pom_url>${pom.url}</site_pom_url>
<site_pom_groupId>${pom.groupId}</site_pom_groupId>
@@ -38,12 +29,12 @@
</properties>
<developers>
<developer>
<id>mindthegab</id>
<id>columbro</id>
<name>Gabriele Columbro</name>
<email>g.columbro@sourcesense.com</email>
<email>gabriele.columbro@alfresco.com</email>
<roles />
<organization>Sourcesense</organization>
<organizationUrl>http://www.sourcesense.com</organizationUrl>
<organization>Alfresco</organization>
<organizationUrl>http://www.alfresco.com</organizationUrl>
</developer>
<developer>
<id>rdanner</id>
@@ -53,62 +44,6 @@
</developer>
</developers>
<scm>
<developerConnection>scm:svn:https://forge.alfresco.com/svn/maven4alfresco/amp-plugin/tags/maven-amp-plugin-3.0.0</developerConnection>
<url>https://forge.alfresco.com/svn/maven4alfresco/amp-plugin/tags/maven-amp-plugin-3.0.0</url>
<connection>scm:svn:https://forge.alfresco.com/svn/maven4alfresco/amp-plugin/tags/maven-amp-plugin-3.0.0</connection>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<!-- Automatically notifies the list when release is done. Please supply username and password in the command line -->
<configuration>
<smtpHost>mail.sourcesense.com</smtpHost>
<smtpPort implementation="java.lang.Integer">25</smtpPort>
<toAddresses>
<toAddress implementation="java.lang.String">sysadmin@sourcesense.com</toAddress>
<toAddress implementation="java.lang.String">alfresco@sourcesense.com</toAddress>
<toAddress implementation="java.lang.String">alfresco-dev@lists.sourcesense.com</toAddress>
<toAddress implementation="java.lang.String">users@maven.apache.org</toAddress>
<toAddress implementation="java.lang.String">announce@maven.apache.org</toAddress>
</toAddresses>
<username>${smtp.username}</username>
<password>${smtp.password}</password>
<fromDeveloperId>mindthegab</fromDeveloperId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-5</version>
<configuration>
<!-- useEditMode>true</useEditMode>-->
<!-- dryRun>true</dryRun-->
<preparationGoals>clean package</preparationGoals>
<goals>deploy site:site site:deploy changes:announcement-mail</goals>
<tagBase>${svn.tags.url}</tagBase>
<arguments>-Dgpg.skip=true</arguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -148,19 +83,4 @@
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ss-public</id>
<url>scp://repository.sourcesense.com/var/www/repository.sourcesense.com/maven2</url>
</repository>
<snapshotRepository>
<id>ss-public</id>
<name>SS public repo</name>
<url>scp://repository.sourcesense.com/var/www/repository.sourcesense.com/maven2-snapshots</url>
</snapshotRepository>
<site>
<id>ss-site-public</id>
<url>scp://repository.sourcesense.com/var/www/repository.sourcesense.com/maven2-sites/${pom.artifactId}</url>
</site>
</distributionManagement>
</project>

View File

@@ -4,12 +4,15 @@
<artifactId>maven-nosnapshot-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>0.0.5-SNAPSHOT</version>
<name>Custom version manipulator Maven Plugin. It's non invasive and puts modified versions in configurable pom properties</name>
<url>http://maven.apache.org</url>
<scm>
<developerConnection>scm:svn:https://maven-alfresco-archetypes.googlecode.com/svn/trunk/plugins/maven-nosnapshot-plugin</developerConnection>
<url>https://maven-alfresco-archetypes.googlecode.com/svn/trunk/plugins/maven-nosnapshot-plugin</url>
</scm>
<name>Custom version manipulator Maven Plugin</name>
<description>It's non invasive and puts modified versions in configurable pom properties</description>
<url>${project.artifactId}</url>
<parent>
<groupId>org.alfresco</groupId>
<artifactId>maven-alfresco-lifecycle</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -34,32 +37,5 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!-- useEditMode>true</useEditMode>-->
<preparationGoals>clean</preparationGoals>
<goals>deploy</goals>
<tagBase>https://maven-alfresco-archetypes.googlecode.com/svn/tags</tagBase>
<useEditMode>true</useEditMode>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ss-nexus</id>
<url>http://repository.sourcesense.com/nexus/content/repositories/releases</url>
</repository>
</distributionManagement>
</project>