Author: shankar
Date: Tue Dec 15 09:29:24 2009
New Revision: 890713
URL: http://svn.apache.org/viewvc?rev=890713&view=rev
Log:
fixing compilation issues
Modified:
incubator/stonehenge/trunk/stocktrader/wsas/identity/pom.xml
Modified: incubator/stonehenge/trunk/stocktrader/wsas/identity/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/wsas/identity/pom.xml?rev=890713&r1=890712&r2=890713&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/wsas/identity/pom.xml (original)
+++ incubator/stonehenge/trunk/stocktrader/wsas/identity/pom.xml Tue Dec 15
09:29:24 2009
@@ -25,10 +25,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.stonehenge.stocktrader.identity</groupId>
<artifactId>attributeservice</artifactId>
- <!--packaging>bundle</packaging>-->
+ <packaging>bundle</packaging>
<version>m2</version>
<name>WSO2 Identity Attribute Service for Stonehenge</name>
+ <properties>
+ <axis2.osgi.version.range>[1.5.0.wso2,
1.6.0)</axis2.osgi.version.range>
+ </properties>
+
<build>
<plugins>
<plugin>
@@ -40,10 +44,19 @@
<target>1.5</target>
</configuration>
</plugin>
- <!--plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-scr-plugin</artifactId>
- </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-scr-plugin</artifactId>
+ <version>1.0.10</version>
+ <executions>
+ <execution>
+
<id>generate-scr-scrdescriptor</id>
+ <goals>
+ <goal>scr</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
@@ -66,42 +79,71 @@
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
</configuration>
- </plugin-->
+ </plugin>
</plugins>
</build>
<dependencies>
<dependency>
- <groupId>opensaml.wso2</groupId>
- <artifactId>opensaml2</artifactId>
- <version>2.0.1.alpha1-wso2v1</version>
+ <groupId>opensaml</groupId>
+ <artifactId>opensaml2</artifactId>
+ <version>2.0-alpha1</version>
</dependency>
+ <!--<dependency>
+ <groupId>org.apache.ws.commons.axiom</groupId>
+ <artifactId>axiom</artifactId>
+ <version>1.2.9</version>
+ </dependency>-->
+
+ <dependency>
+ <groupId>org.apache.axis2</groupId>
+ <artifactId>axis2</artifactId>
+ <version>1.5</version>
+ </dependency>
+
<dependency>
- <groupId>org.apache.ws.commons.axiom.wso2</groupId>
- <artifactId>axiom</artifactId>
- <version>1.2.9.wso2v1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.apache.axis2.wso2</groupId>
- <artifactId>axis2</artifactId>
- <version>1.5.0.wso2v3</version>
- </dependency>
-
- <dependency>
- <groupId>org.wso2.carbon</groupId>
- <artifactId>org.wso2.carbon.security.rahas</artifactId>
- <version>2.0.1</version>
- </dependency>
-
- <dependency>
- <groupId>org.wso2.carbon</groupId>
- <artifactId>org.wso2.carbon.identity.provider</artifactId>
- <version>2.0.0</version>
- </dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.security.rahas</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.identity.provider</artifactId>
+ <version>2.0.0</version>
+ </dependency>
</dependencies>
+ <repositories>
+ <repository>
+ <id>maven-snapshots</id>
+ <name>Maven Central Development Repository</name>
+ <url>http://snapshots.maven.codehaus.org/maven2</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ <repository>
+ <id>wso2-maven2-repository</id>
+ <name>WSO2 Development Repository</name>
+ <url>http://dist.wso2.org/maven2</url>
+ </repository>
+ <repository>
+ <id>m2-snapshot-repository</id>
+ <url>
+
http://people.apache.org/repo/m2-snapshot-repository
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+
</project>