Author: saminda
Date: Mon Dec 10 06:28:11 2007
New Revision: 10857
Log:
1. Added drupal/mediawiki mode cspace distribution
2. Added sign profile
Added:
trunk/solutions/identity/modules/distribution/rp-extension-drupal/
trunk/solutions/identity/modules/distribution/rp-extension-drupal/assembly-drupal.xml
trunk/solutions/identity/modules/distribution/rp-extension-drupal/pom.xml
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/assembly-mediawiki.xml
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/pom.xml
Modified:
trunk/solutions/identity/modules/distribution/pom.xml
trunk/solutions/identity/pom.xml
Modified: trunk/solutions/identity/modules/distribution/pom.xml
==============================================================================
--- trunk/solutions/identity/modules/distribution/pom.xml (original)
+++ trunk/solutions/identity/modules/distribution/pom.xml Mon Dec 10
06:28:11 2007
@@ -344,6 +344,11 @@
</dependencies>
+ <modules>
+ <module>rp-extension-drupal</module>
+ <module>rp-extension-mediawiki</module>
+ </modules>
+
</profile>
</profiles>
Added:
trunk/solutions/identity/modules/distribution/rp-extension-drupal/assembly-drupal.xml
==============================================================================
--- (empty file)
+++
trunk/solutions/identity/modules/distribution/rp-extension-drupal/assembly-drupal.xml
Mon Dec 10 06:28:11 2007
@@ -0,0 +1,15 @@
+<assembly>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ </formats>
+
+ <fileSets>
+ <fileSet>
+ <directory>../../rp-extensions/drupal</directory>
+ <outputDirectory>drupal-mod-cspace-0.1</outputDirectory>
+ </fileSet>
+ </fileSets>
+
+</assembly>
\ No newline at end of file
Added: trunk/solutions/identity/modules/distribution/rp-extension-drupal/pom.xml
==============================================================================
--- (empty file)
+++ trunk/solutions/identity/modules/distribution/rp-extension-drupal/pom.xml
Mon Dec 10 06:28:11 2007
@@ -0,0 +1,35 @@
+<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.wso2.solutions.identity</groupId>
+ <artifactId>drupal-mod-cspace</artifactId>
+ <version>0.1</version>
+ <packaging>pom</packaging>
+ <name>Identity Solution : Distribution : Drupal Mod Cspace</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-1</version>
+ <executions>
+ <execution>
+ <id>distribution-package-drupal-mod-cspace</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>assembly-drupal.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Added:
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/assembly-mediawiki.xml
==============================================================================
--- (empty file)
+++
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/assembly-mediawiki.xml
Mon Dec 10 06:28:11 2007
@@ -0,0 +1,14 @@
+<assembly>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>../../rp-extensions/mediawiki</directory>
+ <outputDirectory>mediawiki-mod-cspace-0.1</outputDirectory>
+ </fileSet>
+ </fileSets>
+
+</assembly>
\ No newline at end of file
Added:
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/pom.xml
==============================================================================
--- (empty file)
+++
trunk/solutions/identity/modules/distribution/rp-extension-mediawiki/pom.xml
Mon Dec 10 06:28:11 2007
@@ -0,0 +1,35 @@
+<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.wso2.solutions.identity</groupId>
+ <artifactId>mediawiki-mod-cspace</artifactId>
+ <version>0.1</version>
+ <packaging>pom</packaging>
+ <name>Identity Solution : Distribution : Mediawiki Mod Cspace</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-1</version>
+ <executions>
+ <execution>
+ <id>distribution-package-mediawiki-mod-cspace</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>assembly-mediawiki.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Modified: trunk/solutions/identity/pom.xml
==============================================================================
--- trunk/solutions/identity/pom.xml (original)
+++ trunk/solutions/identity/pom.xml Mon Dec 10 06:28:11 2007
@@ -653,6 +653,32 @@
</dependencies>
</profile>
+ <profile>
+ <activation>
+ <property>
+ <name>sign</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
</profiles>
<modules>
@@ -670,10 +696,15 @@
<distributionManagement>
<repository>
- <id>wso2-maven2-snapshot-repository</id>
+ <id>wso2-maven2-repository</id>
<name>WSO2 Maven2 Repository</name>
<url>scp://dist.wso2.org/home/httpd/dist.wso2.org/maven2/</url>
</repository>
+ <snapshotRepository>
+ <id>wso2-maven2-snapshot-repository</id>
+ <name>WSO2 Maven2 Repository</name>
+ <url>scp://dist.wso2.org/home/httpd/dist.wso2.org/maven2/</url>
+ </snapshotRepository>
</distributionManagement>
<properties>
_______________________________________________
Identity-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/identity-dev